El método group() de Matcher Class se usa para hacer que la subsecuencia de entrada coincida con el resultado de la coincidencia anterior.
Sintaxis:
public String group()
Parámetros: Este método no toma ningún parámetro.
Valor de retorno: este método devuelve la string, que es la subsecuencia de entrada que coincide con la coincidencia anterior.
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ó.
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 = "(G*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()); } } }
Coincidencia actual: java.util.regex.Matcher[patrón=(G*s) region=0, 13 lastmatch=]
s
s
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 = "(G*G)"; // 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()); } } }
Coincidencia actual: java.util.regex.Matcher[patrón=(G*G) región=0, 11 última coincidencia=]
G
G
G
G
G
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