I’m trying to write a RegEx that starts with the number 0 or ANY Letter (basically it can’t start with 1-9). It also must be 13 characters long
I have this but it does not seem to work:
"^[0][a-zA-Z]{13}"
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try this regex instead:
[0a-zA-Z]means “one character, that is either a 0, one of a-z, or one of A-Z”..{12}means twelve more characters, whatever they are.