Regular Expressions 101

Community Patterns

1

WoW Screenshot

Python
If you need to rename it
Submitted by anonymous - 7 years ago
1

gotcha

ECMAScript (JavaScript)
Ci
Submitted by anonymous - 7 years ago

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

Loading markdown...
Submitted by JY - 7 years ago