I have one password text box which requirement is some thing like:
- Should start with only Alphabets.
- Should contain one numeric.
- should contain one special character
- not less than 10 character.
I have created this regEx :
^.*[a-zA-Z](?=.*\d)(?=.*[@#$%^&+=])(?=.{10,15}).*$
but its taking first character as numeric and special character also, that should not to happen.
Try:
See it