Regular Expressions 101

Community Patterns

Community Library Entry

1

Regular Expression
Created·2016-06-29 08:14
Flavor·PCRE (Legacy)

/
(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?!.*[\!\@\#\$\%\^\&\*\(\)\[\]\{\}\`\~\|\\\/\?\>\<\.\,\:\;\'\"]).{1,20}
/
Open regex in editor

Description

Match at least one upper case, lower case and digit between 1 and 20 length with no special characters

Submitted by anonymous