El método quoteReplacement(String string) de Matcher Class se usa para obtener el literal de string de reemplazo de la string pasada como parámetro. Este literal de string actúa como parámetro para los métodos de reemplazo. Por lo tanto, el método quoteReplacement() actúa como intermediario en los métodos de reemplazo.
Sintaxis:
public static String quoteReplacement(String string)
Parámetros: este método toma una string de parámetros que es la string que se reemplazará en el Matcher.
Valor de retorno: este método devuelve un literal de string que es la string de reemplazo para el comparador.
Los siguientes ejemplos ilustran el método Matcher.quoteReplacement():
Ejemplo 1:
// Java code to illustrate quoteReplacement() method import java.util.regex.*; public class GFG { public static void main(String[] args) { // Get the regex to be checked String regex = "Geek"; // 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); // Get the String to be replaced String stringToBeReplaced = "Geeks"; // Get the String literal // using quoteReplacement() method System.out.println( matcher .quoteReplacement(stringToBeReplaced)); } }
Geeks
Ejemplo 2:
// Java code to illustrate quoteReplacement() 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 = "GFGFGFGFGFGFGFGFGFG FGF GFG GFG FGF"; // Create a matcher for the input String Matcher matcher = pattern.matcher(stringToBeMatched); // Get the String to be replaced String stringToBeReplaced = "GFG"; // Get the String literal // using quoteReplacement() method System.out.println( matcher .quoteReplacement(stringToBeReplaced)); System.out.println( matcher .replaceAll( matcher .quoteReplacement( stringToBeReplaced))); } }
GFG GGFGGGFGGGFGGGFGGFG GFG GFG GFG GFG
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