I can't seem to find any suitable answer for this.
I need a regex that will make sure that there is at least one special character
, one number
, one upper
and one lower
and at least 8 long.
I have a few here but for some reason, when I add more characters it doesn't recognize them.
ValidationExpression="^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[$@$!%*?&])[A-Za-z\d$@$!%.*?&]{8,}"
I want to add every single special character.