I am trying to match all the values 1 to 18 from string 24-15-7-49-63-2 using regex. I used regex before for general purpose but I don't have any idea how to do it.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The tricky thing is that you cannot easily define ranges with regexes. But this might do what you want:
You can see it in action here: http://regexr.com?2v8jj Here's an example in java:
Outputs:
Edit: Based on the comment you can get unique matches using this pattern:
In action: http://regexr.com?2v8kh |
|||||||||||
|
c#andjava, but since the accepted answer is in Java, I've removed the other tag. – Alan Moore Nov 21 '11 at 14:06