I want to create a regular expression where only numbers are allowed with max length 9 and no minimum length. I came up with \d{9}[0-9] but it isn't working.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
You're close. Try this:
The ^ and $ match the beginning and the end of the text, respectively. |
|||
|
|
|
Regular expressions can be tricky; what you've written does the following:
If you want no minimum limit of length, but a maximum length of 9, you probably want the following regular expression:
|
|||
|
|
|
It looks like you were close, try |
|||||
|
|
I think It should be 1 to 9 digits:
Edit:
If the complete string should match the expression then you should follow vcsjones' advice with the |
||||
|
|