Hi
I am trying to create apssword validation with that Regexp :
^.{10,}$.*[a-z].*[A-Z].*[0-9].*\W.*$
But it fails. The above regexp will allow min of 10+characters with atleast one uppercase, one lowercase, one digit and one special character.
Best regards.