I need a regular expression for string validation. String can be empty, can have 5 digits, and can have 9 digits. Other situations is invalid. I am using the next regex:
/\d{5}|\d{9}/
But it doesn't work.
|
Just as Marc B said in the comments, I would use this regular expression:
This matches either exactly five digits that might be followed by another four digits (thus nine digits in total) or no characters at all (note the The advantage of this pattern in opposite to the other mentioned patterns with alternations is that this won’t require backtracking if matching five digits failed. |
|||
|
|
You forgot the anchors |
|||
|
|
|
"doesn't work" isn't much help. but wouldn't it be something like this?
(Bit rusty on regexp, but i'm trying to do is "start, then 5 digits OR 9 digits OR nothing, then end) |
|||
|
|
|
The answer as to why it doesent work is with Perl style regex's alternations are prioritized from left to right. Change it to:
|
||||
|
|
/^(\d{5})(\d{4})?)$/? Assuming that the digits are the only thing in the string, this would match 5 digits, optionally followed by 4 more. – Marc B Jan 27 '11 at 13:48