I want to create a regular expression in php to make sure string is of one of following format :
- integer only example: 1122
- integer,integer example: 88,99
- integer,integer,integer example: 88,99,19
can anyone help me, not able to think any.
|
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
This will match any string that is an integer or a list of integers separated by a comma.
|
|||||
|
|
The simplest regexp for that would be
If you need limit to 3 repetitions then this would work fine:
EDIT The problem you described in comments is that the PHP function which is used performs a search instead of full match.
So the regular expression is fine. However for
|
|||||
|