Regular expression for Password must be 8 or more characters long, including a capital letter and a number or symbol.
^.*(?=.{8,})(?=.*[a-z])(?=.*[A-Z])(?=.*[@#$%^&+=\d]).*$
Regular expression for Password must be 8 or more characters long, including a capital letter and a number and symbol.
^.*(?=.{8,})(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[@#$%^&+=]).*$
Like wise you can create your own Regular expression.
^.*(?=.{8,})(?=.*[a-z])(?=.*[A-Z])(?=.*[@#$%^&+=\d]).*$
Regular expression for Password must be 8 or more characters long, including a capital letter and a number and symbol.
^.*(?=.{8,})(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[@#$%^&+=]).*$
Like wise you can create your own Regular expression.
No comments:
Post a Comment