what is the regex for a1234567890?
Dear all,
I am using jquery.validate.js. May I know how to write the regex if an input string first character must be letter and the other characters can be either letter or digit?
e.g. a12345678 is correct and 987654321a is incorrect.
Thanks for any input. A URL with tutorial is fit for me, too. I just don't know how to start. Currently I have regex: /^[a-zA-Z0-9]{6,16}$/ but it doesn's verify first character.