Last Updated : 26 Nov, 2018
The
groupCount()method of
Matcher Classis 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 groupsin this matcher's pattern. Below examples illustrate the Matcher.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";
// 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());
}
}
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
= "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());
}
}
Reference: Oracle Doc
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4