Regular Expressions 101

Community Patterns

There does not seem to be anything here

Community Library Entry

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 - 9 years ago