vote up 4 vote down star
2

I'm trying to validate user input, which is just comma separated numbers. I'd like to do this with RegEx, but can't come up with the right expression.

It should validate the following strings (and larger):

1
12
123
1,234
12,345
123,456

and invalidate the following strings (and crazier):

1,1
1,12
12,1
12,12
123,1
123,1

Any help would be greatly appreciated.

Here's what I've tried so far (EDIT: which don't work), along with several variants ->

^(((\d{1,3},)*\d{3})|(\d{1,3}))$
^(\d{1,3}[,])*\d{3}|\d{1,3}$
flag

1 Answer

vote up 8 vote down check

How about this:

^\d{1,3}([,]\d{3})*$

Basically you can have 1-3 digits comma free. After that, you need a comma. If you've got a comma, it must be followed by 3 more digits. That comma-3-digit sequence can appear any number of times.

EDIT: As Andrew Hare observed, you don't care about what was found inside the parentheses beyond the fact that it matched, so you can use a non-capturing group instead by placing ?: after the opening parenthesis:

^\d{1,3}(?:[,]\d{3})*$
link|flag
2  
+1 Nicely done. My only criticism: since this regular expression is for validation only you should change that capture group to be a non-capture group. – Andrew Hare Aug 31 at 20:05
2  
Good point, but it has always bothered me that making a group non-capture makes the regex more ugly. – Adam Bellaire Aug 31 at 20:12
looking at the original regex it looks lit a string like 12,1,123 is legal ((\d{1,3},)*\d{3}) which the above does not satisfy – Rune FS Aug 31 at 20:20
@Rune FS: The OP states that the original regex is not working as he intends. This is why he provided test input. – Adam Bellaire Aug 31 at 20:24
Will this validate "123,456123,456" ? – Faiz Sep 1 at 12:03
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.