Regular Expressions 101

Community Patterns

Uppercase Lowercase Digit mandatory only

1

Regular Expression
PCRE (PHP <7.3)

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

Description

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

Submitted by anonymous - 8 years ago