Friday, November 21, 2025
HomeLanguagesJavaMatcher groupCount() method in Java with Examples

Matcher groupCount() method in Java with Examples

The groupCount() method of Matcher Class is used to get the number of capturing groups in this matcher’s pattern.

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 Matcher.groupCount() method:

Example 1:




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


Output:

0

Example 2:




// 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
            = "GFGFGFGFGFGFGFGFGFG";
  
        // Create a matcher for the input String
        Matcher matcher
            = pattern
                  .matcher(stringToBeMatched);
  
        // Get the number of capturing groups
        // using groupCount() method
        System.out.println(matcher.groupCount());
    }
}


Output:

0

Reference: Oracle Doc

RELATED ARTICLES

Most Popular

Dominic
32406 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6783 POSTS0 COMMENTS
Nicole Veronica
11929 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11997 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7167 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS