Thursday, November 20, 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
32404 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6775 POSTS0 COMMENTS
Nicole Veronica
11924 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11994 POSTS0 COMMENTS
Shaida Kate Naidoo
6903 POSTS0 COMMENTS
Ted Musemwa
7159 POSTS0 COMMENTS
Thapelo Manthata
6859 POSTS0 COMMENTS
Umr Jansen
6846 POSTS0 COMMENTS