How can I create a java regular expression for a comma separator list
(3) (3,6) (3 , 6 )
I tried, but it does not match anything:
Pattern.compile("\\(\\S[,]+\\)")
and how can I get the value "3" or "3"and "6" in my code from the Matcher class?
|
How can I create a java regular expression for a comma separator list (3) (3,6) (3 , 6 ) I tried, but it does not match anything:
and how can I get the value "3" or "3"and "6" in my code from the Matcher class? |
|||||
|
Validation regexYou can try this meta-regex approach for clarity:
The The References
Testing and splittingWe can then test the pattern as follows:
This prints:
This uses |
|||||||||||||
|
|
It's not clear to me exactly what your input looks like, but I doubt the pattern your using is what you want. Your pattern will match a literal If you want to match a number, optionally followed by a comma and another number, all surrounded by parentheses, you could try this pattern:
That should match You can retrieve the matched digit(s) using |
|||
|
|