El método group(String string) de Matcher Class se usa para obtener el grupo del resultado de la coincidencia ya realizado, a partir de la string especificada.
Sintaxis:
public String group(String string)
Parámetros: este método toma una string de parámetros que es la string de la que se requiere el índice de grupo del patrón coincidente.
Valor devuelto: este método devuelve el grupo del grupo coincidente de la string especificada.
Excepción: este método arroja:
- IllegalStateException si aún no se ha intentado ninguna coincidencia o si la operación de coincidencia anterior falló.
- IndexOutOfBoundsException si no hay ningún grupo de captura en el patrón con el nombre proporcionado.
Los siguientes ejemplos ilustran el método Matcher.group():
Ejemplo 1:
// Java code to illustrate end() method import java.util.regex.*; public class GFG { public static void main(String[] args) { // Get the regex to be checked String regex = "\\b(?<Geeks>[A-Za-z\\s]+)"; // 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 current matcher state MatchResult result = matcher.toMatchResult(); System.out.println("Current Matcher: " + result); while (matcher.find()) { // Get the group matched using group() method System.out.println(matcher.group("Geeks")); } } }
Comparador actual: java.util.regex.Matcher[pattern=\b(?
[A-Za-z\s]+) region=0,13 lastmatch=]
GeeksForGeeks
Ejemplo 2:
// Java code to illustrate end() method import java.util.regex.*; public class GFG { public static void main(String[] args) { // Get the regex to be checked String regex = "\\b(?<GFG>[A-Za-z\\s]+)"; // Create a pattern from regex Pattern pattern = Pattern.compile(regex); // Get the String to be matched String stringToBeMatched = "GFG FGF GFG"; // Create a matcher for the input String Matcher matcher = pattern .matcher(stringToBeMatched); // Get the current matcher state MatchResult result = matcher.toMatchResult(); System.out.println("Current Matcher: " + result); while (matcher.find()) { // Get the group matched using group() method System.out.println(matcher.group("GFG")); } } }
Comparador actual: java.util.regex.Matcher[pattern=\b(?
[A-Za-z\s]+) region=0,11 lastmatch=]
GFG FGF GFG
Referencia: documento de Oracle
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