I want a regular expression for only accepting
0-9999
No spaces, no letters.
However, “blank”(empty) is allowed.
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.
Should do it.
Or more succinctly:
This works because you’re saying “0, 1, 2, or 3 digits”, where each digit is 0-9. This allows numbers between 0 and 9999, and nothing else.
Note that it allows leading zeros, i.e. 0004 is a valid number.