can any one help me in creating a regular expression for password validation.
The Condition is "Password must contain 8 characters and at least one number, one letter and one unique character such as !#$%&? "
|
can any one help me in creating a regular expression for password validation. The Condition is "Password must contain 8 characters and at least one number, one letter and one unique character such as |
||||
|
|
|
|||||||||||
|
|
You can achieve each of the individual requirements easily enough (e.g. minimum 8 characters: To combine them you can use "positive lookahead" to apply multiple sub-expressions to the same content. Something like So:
(?=.*\d.*)(?=.*[a-zA-Z].*)(?=.*[!#\$%&\?].*).{8,}
Remembering to escape meta-characters. |
|||
|
|