El método useAnchoringBounds(boolean) de Matcher Class se usa para establecer los límites de anclaje de este comparador. Al anclar los límites, significa que el comparador coincidirá con los anclajes como ^ y $para obtener una coincidencia, si los límites de anclaje se establecen en verdadero. Este método devuelve un Matcher con los límites de anclaje modificados.
Sintaxis:
public boolean useAnchoringBounds( boolean setAnchoringBounds)
Parámetros: este método toma un parámetro setAnchoringBounds , que es un valor booleano que representa los límites de anclaje de este comparador para modificarlo.
Valor de retorno: este método devuelve un Matcher con los límites de anclaje modificados.
Los siguientes ejemplos ilustran el método Matcher.useAnchoringBounds():
Ejemplo 1:
// Java code to illustrate useAnchoringBounds() 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 Matcher matcher = pattern.matcher(stringToBeMatched); // set the anchoring bounds to true // using useAnchoringBounds() method matcher = matcher .useAnchoringBounds(true); // Check if this matcher has anchoring bounds or not System.out.println("Does this matcher" + " has anchoring bounds: " + matcher.hasAnchoringBounds()); } }
Does this matcher has anchoring bounds: true
Ejemplo 2:
// Java code to illustrate useAnchoringBounds() method import java.util.regex.*; public class GFG { public static void main(String[] args) { // Get the regex to be checked String regex = "(FGF)"; // Create a pattern from regex Pattern pattern = Pattern.compile(regex); // Get the String to be matched String stringToBeMatched = "FGF GFG GFG FGF"; // Create a matcher for the input String Matcher matcher = pattern.matcher(stringToBeMatched); // set the anchoring bounds to true // using useAnchoringBounds() method matcher = matcher .useAnchoringBounds(false); // Check if this matcher has anchoring bounds or not System.out.println("Does this matcher" + " has anchoring bounds: " + matcher.hasAnchoringBounds()); } }
Does this matcher has anchoring bounds: false
Referencia: https://docs.oracle.com/javase/9/docs/api/java/util/regex/Matcher.html#useAnchoringBounds-boolean-
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