I am attempting to apply a passwordStrengthRegularExpression when a user enters a New Password.
My password requirements are:
Minimun of 6 in length.
One upper-case character.
One lower-case character.
One special character.
The passwordStrengthRegularExpression that I am using is:
passwordStrengthRegularExpression="(?=.{3,})(?=(.*[A-Z]){1,})(?=(.*[a-z]){1,})(?=(.*\W){1,})"
When I attempt to put a password in like the following: Lu#ow1 I get an error indicating that it failed the passwordStrengthRegularExpression. ???? What is wrong with the expression/password that would make it fail? It is a minimum of six in length, it contains at least one upper-case character, one lower-case character and has one special character.
Go to the complete details ...