El método groupCount() de MatchResult Interface se usa para obtener el número de grupos de captura en el patrón de este comparador. Este método devuelve un valor entero que es el número de grupos encontrados al hacer coincidir este comparador.
Sintaxis:
public int groupCount()
Parámetros: Este método no toma ningún parámetro.
Valor devuelto: este método devuelve el número de grupos de captura en el patrón de este comparador.
Los siguientes ejemplos ilustran el método MatchResult.groupCount():
Ejemplo 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()); } }
Producción:
1
Ejemplo 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()); } }
Producción:
0
Referencia: https://docs.oracle.com/javase/9/docs/api/java/util/regex/Matcher.html#groupCount–
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA