By using this website, you agree to our Terms of Use (click here)
The standard password mask is set to include one letter and one number, and the length is min 8 characters.
Does anyone know how to change the mask to include the validation for one special character (!@#$%^&*)? So ultimately the password must include at least one letter, one number and one special character.
Here's the current mask:
(?!^[\p{C}\p{S}\p{P} ]*$)(?!^[\p{C}\p{S}\p{P}0-9 ]*$)(?!^[\p{C}\p{S}\p{P}a-zA-Z ]*$)^([\S ]{8,})$
I'm pretty sure this is just a regular expression. I don't know the intricacies of regular expressions, but I did a Google search.
Try the second example in the first answer on this discussion:

