I'm trying to check that the first character of a username is capital, the following can be letters or numbers and at most 20 characters long. Can someone explain why my syntax is wrong?
/^[A-z][a-z0-9_-]{3,19}$/
|
I'm trying to check that the first character of a username is capital, the following can be letters or numbers and at most 20 characters long. Can someone explain why my syntax is wrong?
|
||||
|
Your first Z is not a capital Z.
|
|||
|
Your first character needs to be So
Should be
|
|||
|
|
|
Why can't you let the poor users pick their own usernames? What you should do is convert all caps to lowercase.
But if you are truly evil, you should change that
|
|||||
|
|
I would do it like this:
|
|||||||
|
:)– Jared Farrish Nov 25 '11 at 21:55/^[A-Z][a-zA-Z0-9]{1,19}$/– RightSaidFred Nov 25 '11 at 22:08