Regular Expressions 101

Community Patterns

Paswword with min a upper case, a lower case, a digit without accent

1

Regular Expression
ECMAScript (JavaScript)

/
^(?=.+\d)(?=.+[a-z])(?=.+[A-Z])(?=.+[_\.@\-])[0-9a-zA-Z_\.@\-]{6,12}$
/
gm

Description

Paswword with min a upper case, a lower case, a digit without accent and special case (.@-_)

Submitted by JY - 8 years ago