Matcher: group()

String group()
Returns the input subsequence matched by the previous match.

/*
 * Output:
Match: X
Match: XX
Match: XXX

 * */

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class MainClass {
    public static void main(String args[]) { 
      Pattern pat = Pattern.compile("X+"); 
      Matcher mat = pat.matcher("X XX XXX"); 
   
      while(mat.find()) 
        System.out.println("Match: " + mat.group());  
    } 
}
Home 
  Java Book 
    Essential Classes  

Matcher:
  1. Regular Expression Processing
  2. Normal character
  3. Wildcard character
  4. Using Wildcards and Quantifiers
  5. Greedy behavior
  6. Working with Classes of Characters
  7. Using replaceAll( )
  8. Using split( )
  9. Matcher: appendReplacement(StringBuffer sb,String replacement)
  10. Matcher.appendTail(StringBuffer sb)
  11. Matcher: find()
  12. Matcher: group()
  13. Matcher: group(int group)
  14. Matcher: groupCount()
  15. Matcher: lookingAt()
  16. Matcher: matches()
  17. Matcher: replaceAll(String text)
  18. Matcher: start()