Friday, July 3, 2026
HomeLanguagesJavaMatchResult group(int) method in Java with Examples

MatchResult group(int) method in Java with Examples

The group(int group) method of MatchResult Interface is used to get the group index of the match result already done, from the specified group.

Syntax:

public String group(int group)

Parameters: This method takes a parameter group which is the group from which the group index of the matched pattern is required.

Return Value: This method returns the index of the first character matched from the specified group.

Exception: This method throws:

  • IllegalStateException if no match has yet been attempted, or if the previous match operation failed.
  • IndexOutOfBoundsException if there is no capturing group in the pattern with the given index.

Below examples illustrate the MatchResult.group() method:

Example 1:




// Java code to illustrate group() method
  
import java.util.regex.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Get the regex to be checked
        String regex = "(Geeks)";
  
        // Create a pattern from regex
        Pattern pattern
            = Pattern.compile(regex);
  
        // Get the String to be matched
        String stringToBeMatched
            = "Geeks For Geeks";
  
        // Create a matcher for the input String
        MatchResult matcher
            = pattern
                  .matcher(stringToBeMatched);
  
        while (((Matcher)matcher).find()) {
            // Get the group matched using group() method
            System.out.println(matcher.group(1));
        }
    }
}


Output:

Geeks
Geeks

Example 2:




// Java code to illustrate group() method
  
import java.util.regex.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Get the regex to be checked
        String regex = "(GFG)";
  
        // Create a pattern from regex
        Pattern pattern
            = Pattern.compile(regex);
  
        // Get the String to be matched
        String stringToBeMatched
            = "GFG FGFGFGFGFGFGF GFG";
  
        // Create a matcher for the input String
        MatchResult matcher
            = pattern
                  .matcher(stringToBeMatched);
  
        while (((Matcher)matcher).find()) {
            // Get the group matched using group() method
            System.out.println(matcher.group(0));
        }
    }
}


Output:

GFG
GFG
GFG
GFG
GFG
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32519 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6900 POSTS0 COMMENTS
Nicole Veronica
12015 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6966 POSTS0 COMMENTS