Regular expression for password
Regular Expresssion for a password validation is ^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{4,8}$
The description for the above expression is
Password matching expression. Password must be at least 4 characters, no more than 8 characters, and must include at least one upper case letter, one lower case letter, and one numeric digit.
Lots of regular expresssion available at http://regexlib.com/DisplayPatterns.aspx
The description for the above expression is
Password matching expression. Password must be at least 4 characters, no more than 8 characters, and must include at least one upper case letter, one lower case letter, and one numeric digit.
Lots of regular expresssion available at http://regexlib.com/DisplayPatterns.aspx
Comments
Post a Comment