Regular Expressions 101

Community Patterns

Community Library Entry

1

Regular Expression
Created·2016-07-07 09:32
Flavor·JavaScript

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

Description

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

Submitted by JY