Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

4 Answers

up vote 4 down vote accepted
import java.util.regex.*;
try {
    Pattern regex = Pattern.compile("(\\d\\{1-3\\})\\.(\\d\\{1-3\\})\\.(\\d\\{1-3\\})\\.(\\d\\{1-3\\})");
    Matcher regexMatcher = regex.matcher(subjectString);
    while (regexMatcher.find()) {
    	for (int i = 1; i <= regexMatcher.groupCount(); i++) {
    		// matched text: regexMatcher.group(i)
    		// match start: regexMatcher.start(i)
    		// match end: regexMatcher.end(i)
    	}
    } 
} catch (PatternSyntaxException ex) {
    // Syntax error in the regular expression
}
share|improve this answer
You shouldn't need to catch PatternSyntaxException if your regex is hardcoded (like it is). If there's an error in the syntax, you'll find it the first time you run the program. – Michael Myers May 7 '09 at 20:09
@mmyers: force of habits I assume, but you are right. – Lieven Keersmaekers May 7 '09 at 20:29

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:

Pattern p = Pattern.compile("(\\d{1-3}).(\\d{1-3}).(\\d{1-3}).(\\d{1-3})"); 
Matcher m = p.matcher("127.0.0.1"); 
if (m.matches()) {   
  System.out.print(m.group(1));  
  // m.group(0) is the entire matched item, not the first group.
  // etc... 
}
share|improve this answer

http://www.regular-expressions.info/java.html

share|improve this answer
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Seki Aug 29 '12 at 15:02

You might find my blog post here useful:

Regular expressions capturing in Java for Perl hackers

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.