El método useTransparentBounds(boolean) de Matcher Class se usa para establecer los límites transparentes de este comparador. Por límites transparentes, significa que el comparador coincidirá con el patrón coincidente más allá de los límites de la región para obtener una coincidencia, si los límites transparentes se establecen en verdadero. Este método devuelve un Matcher con los límites transparentes modificados.
Sintaxis:
public boolean useTransparentBounds( boolean setTransparentBounds)
Parámetros: este método toma un parámetro setTransparentBounds , que es un valor booleano que representa los límites transparentes de este comparador para modificarlo.
Valor devuelto: este método devuelve un Matcher con los límites transparentes modificados.
Los siguientes ejemplos ilustran el método Matcher.useTransparentBounds():
Ejemplo 1:
// Java code to illustrate useTransparentBounds() 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 transparent bounds to true // using useTransparentBounds() method matcher = matcher .useTransparentBounds(true); // Check if this matcher // has transparent bounds or not System.out.println("Does this matcher" + " has transparent bounds: " + matcher.hasTransparentBounds()); } }
Does this matcher has transparent bounds: true
Ejemplo 2:
// Java code to illustrate useTransparentBounds() 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 transparent bounds to true // using useTransparentBounds() method matcher = matcher .useTransparentBounds(false); // Check if this matcher // has transparent bounds or not System.out.println("Does this matcher" + " has transparent bounds: " + matcher.hasTransparentBounds()); } }
Does this matcher has transparent bounds: false
Referencia: https://docs.oracle.com/javase/9/docs/api/java/util/regex/Matcher.html#useTransparentBounds-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