Regular Expression For Password
Tags: regular expression for password, regular expression pattern, Validate password with regular expressionPassword Regular Expression Pattern ((?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[@#$%]).{6,20}) Description ( # Start of group (?=.*\d) # must contains one digit from 0-9 (?=.*[a-z]) # must contains one lowercase characters (?=.*[A-Z]) # must contains one uppercase characters (?=.*[@#$%]) # must contains one special symbols in the list “@#$%” . # match anything with previous condition checking {6,20} # length at least 6 characters and…
Read More »
0 comments:
Post a Comment