Skip to content

정규식

Jangwon edited this page Sep 19, 2018 · 1 revision

숫자+영문+특수문자

password_reg = re.compile("(?=.*[a-zA-Z])(?=.*[!@#$%^*+=-])(?=.*[0-9]).{6,16}")
password_match = password_reg.match(password)

이메일

email_reg = re.compile("([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})")
email_match = email_reg.match(email)

React

Aiden

Zoe

Gini

Clone this wiki locally