J
JJ
To validate a password as the user is registering I want to use a regular
expressio validator.
I got this one from the Microsoft web site for validating a password of at
least 7 characters, with at least one number and one non-alphanumeric
character:
@\"(?=.{7,})(?=(.*\d){1,})(?=(.*\W){1,})
Yet I can't get it to validate that a password like qwertyui123# fits the
criteria.
Or any password for that matter. Can anyone help with a regular expression
that works? or am I goong wrong somewhere?
JJ
expressio validator.
I got this one from the Microsoft web site for validating a password of at
least 7 characters, with at least one number and one non-alphanumeric
character:
@\"(?=.{7,})(?=(.*\d){1,})(?=(.*\W){1,})
Yet I can't get it to validate that a password like qwertyui123# fits the
criteria.
Or any password for that matter. Can anyone help with a regular expression
that works? or am I goong wrong somewhere?
JJ