El método find() de Matcher Class intenta encontrar la siguiente subsecuencia de la secuencia de entrada que encuentra el patrón. Devuelve un valor booleano que muestra lo mismo.
Sintaxis:
public boolean find()
Parámetros: Este método no toma ningún parámetro.
Valor devuelto: este método devuelve un valor booleano que muestra si una subsecuencia de la secuencia de entrada encuentra el patrón de este comparador
Los siguientes ejemplos ilustran el método Matcher.find():
Ejemplo 1:
// Java code to illustrate find() 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 subsequence // using find() method System.out.println(matcher.find()); } }
Producción:
true
Ejemplo 2:
// Java code to illustrate find() 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 subsequence // using find() method System.out.println(matcher.find()); } }
Producción:
true
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