Hello Friends...
I need help on regular expressions....
I tried the following way but it did not work for me....please help me to create a regular expression...
^.*(?=.{8,})(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(^[a-zA-Z0-9@\$=!:.#%]+$)
My requirement is
-> Min 8 to 15 characters - this I will do with the length validation or by including in the regex
->
atleast one uppercase character ,
atleast one number ,
atleast one lower case character
and only one special case character
other requirement is
-> only lower case characters (min 8 - max 15) Regular Expression - [a-z]{8,15}
Please let me know if I am correct else please correct me....