Regular Expressions 101

Community Patterns

Community Library Entry

0

Regular Expression
Created·2019-03-12 11:51
Flavor·ECMAScript (JavaScript)

/
([a-z]*)(?=.*[0-9])(?=.*[A-Z])(?=.*[\W])(?!.*[\s])(^.{8,16})
/
gm
Open regex in editor

Description

Minimum one capital, one special, one digit, no whitespace

Submitted by anonymous