El método de reinicio (entrada CharSequence) de Matcher Class se usa para restablecer este comparador e insertar la string de entrada pasada como parámetro a este comparador.
Sintaxis:
public Matcher reset(CharSequence input)
Parámetros: este método toma la entrada del parámetro, que es la string que se insertará en el comparador después de restablecerse.
Valor devuelto: este método devuelve este Matcher después de restablecerse con esta entrada.
Los siguientes ejemplos ilustran el método Matcher.reset():
Ejemplo 1:
// Java code to illustrate reset() 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 current matcher state System.out.println("Current Matcher: " + matcher.toMatchResult()); // Reset the Matcher using reset() method String newStringToBeMatched = "GeeksGeeksGeeks"; matcher = matcher .reset(newStringToBeMatched); // Get the current matcher state System.out.println("Current Matcher after Reset: " + matcher.toMatchResult()); } }
Coincidencia actual: java.util.regex.Matcher[pattern=Geeks region=0,13 lastmatch=]
Matcher actual después del reinicio: java.util.regex.Matcher[pattern=Geeks region=0,15 lastmatch=]
Ejemplo 2:
// Java code to illustrate reset() 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 current matcher state System.out.println("Current Matcher: " + matcher.toMatchResult()); // Reset the Matcher using reset() method String newStringToBeMatched = "GFG means GeeksForGeeks"; matcher = matcher .reset(newStringToBeMatched); // Get the current matcher state System.out.println("Current Matcher after Reset: " + matcher.toMatchResult()); } }
Coincidencia actual: java.util.regex.Matcher[pattern=GFG region=0,19 lastmatch=] Coincidencia
actual después del reinicio: java.util.regex.Matcher[pattern=GFG region=0,23 lastmatch=]
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