El método replaceAll(Function) de Matcher Class se comporta como un método de agregar y reemplazar. Este método reemplaza todas las instancias del patrón coincidente en el comparador con la función pasada en el parámetro.
Sintaxis:
public String replaceAll( Function replacerFunction)
Parámetros: este método toma un parámetro replacerFunction que es la función que define el reemplazo del comparador.
Valor de retorno: este método devuelve una string con la string de destino construida reemplazando la string.
Excepciones: este método arroja las siguientes excepciones:
- NullPointerException : si la función de reemplazo es nula
- ConcurrentModificationException : si se detecta que la función de reemplazo modificó el estado de este comparador
Los siguientes ejemplos ilustran el método Matcher.replaceAll():
Ejemplo 1:
Java
// Java code to illustrate replaceAll() 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); System.out.println("Before Replacement: " + stringToBeMatched); // Get the String to be replaced String stringToBeReplaced = "Geeks"; StringBuilder builder = new StringBuilder(); // Replace every matched pattern // with the target String // using replaceAll() method System.out.println("After Replacement: " + matcher .replaceAll( x -> x.group().toUpperCase())); } }
Producción:
Before Replacement: GeeksForGeeks Geeks for For Geeks Geek After Replacement: GEEKSForGEEKS GEEKS for For GEEKS Geek
Ejemplo 2:
Java
// Java code to illustrate replaceAll() 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); System.out.println("Before Replacement: " + stringToBeMatched); // Get the String to be replaced String stringToBeReplaced = "(GFG)"; StringBuilder builder = new StringBuilder(); // Replace every matched pattern // with the target String // using replaceAll() method System.out.println("After Replacement: " + matcher .replaceAll( x -> x.group().toLowerCase())); } }
Producción:
Before Replacement: GFGFGFGFGFGFGFGFGFG FGF GFG GFG FGF After Replacement: GfgfGfgfGfgfGfgfGFG fgf GFG GFG fgf
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