Community Patterns

Community Library Entry

1

Regular Expression
Created·2015-09-28 07:24
Flavor·PCRE (Legacy)

/
(?=^.{7,}$)(?=.*\d)(?=.*[A-Za-z])(?=.*[@'#.$;%^&+=!""()*,-\/:<>?]).*$
/
Open regex in editor

Description

Minimum 7 chars long

Must have at least one char

Must have at least one number

Must have at least one special char i.e. @'#.$;%^&+=!""(),-/:<>?*

Submitted by Piyush