Saturday, October 11, 2025
HomeLanguagesJavaMatchResult groupCount() method in Java with Examples

MatchResult groupCount() method in Java with Examples

The groupCount() method of MatchResult Interface is used to get the number of capturing groups in this matcher’s pattern. This method returns an integer value which is the number of groups found while matching this matcher.
Syntax:  

public int groupCount()

Parameters: This method do not takes any parameter.
Return Value: This method returns the number of capturing groups in this matcher’s pattern.
Below examples illustrate the MatchResult.groupCount() method:
Example 1:

Java




// Java code to illustrate groupCount() 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
            = " GeeksForGeeks Geeks for For Geeks Geek";
 
        // Create a matcher for the input String
        MatchResult matcher
            = pattern
                  .matcher(stringToBeMatched);
 
        // Get the number of capturing groups
        // using groupCount() method
        System.out.println(matcher.groupCount());
    }
}


Output: 

1

 

Example 2:

Java




// Java code to illustrate groupCount() 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
            = "FGF GF FG FGF";
 
        // Create a matcher for the input String
        MatchResult matcher
            = pattern
                  .matcher(stringToBeMatched);
 
        // Get the number of capturing groups
        // using groupCount() method
        System.out.println(matcher.groupCount());
    }
}


Output: 

0

 

Reference: https://docs.oracle.com/javase/9/docs/api/java/util/regex/Matcher.html#groupCount–

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

Most Popular

Dominic
32352 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6720 POSTS0 COMMENTS
Nicole Veronica
11884 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6839 POSTS0 COMMENTS
Ted Musemwa
7103 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS