So I have an IP address as a string.
I have this regex (\d{1-3})\.(\d{1-3})\.(\d{1-3})\.(\d{1-3})
How do I print the matching groups?
Thanks!
|
|
|
|||||
|
|
If you use Pattern and Matcher to do your regex, then you can ask the Matcher for each group using the group(int group) method So:
|
||||
|
|
|
|
|||
|
|
You might find my blog post here useful: |
|||
|
|