What is the regular expression to validate a comma delimited list like this one:
12365, 45236, 458, 1, 99996332, ......
|
The accepted solution will not work for a list containing only 1 element. Also, it will match trailing comma and whitespace. I suggest it be modified to:
|
|||||||||||||||
|
|
Match duplicate comma-delimited items:
This regex can be used to split the values of a comma delimitted list. List elements may be quoted, unquoted or empty. Commas inside a pair of quotation marks are not matched.
|
||||
|
|
It depends a bit on your exact requirements. I'm assuming: all numbers, any length, numbers cannot have leading zeros nor contain commas or decimal points. individual numbers always separated by a comma then a space, and the last number does NOT have a comma and space after it. Any of these being wrong would simplify the solution. ([1-9][0-9]*,[ ])*[1-9][0-9]* Here's how I built that mentally:
|
|||||
|
|
You might want to specify language just to be safe, but
ought to work |
|||||
|
|
i used this for a list of items that had to be alphanumeric without underscores at the front of each item.
|
||||
|
|
|
I had a slightly different requirement, to parse an encoded dictionary/hashtable with escaped commas, like this:
I think this is an elegant solution, with a trick that avoids a lot of regex complexity:
I think it can be adapted to the original question with an expression like I hope it's helpful to somebody and thanks for the tips on getting it close to there, especially Asaph! |
||||
|
|
12365,45236,"This is a \"test."– ceejayoz Sep 8 '09 at 20:14