El método replaceFirst(Function) de Matcher Class se comporta como un método de agregar y reemplazar. Este método reemplaza la primera instancia del patrón coincidente en el comparador con la función pasada en el parámetro.
Sintaxis:
public String replaceFirst( 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.replaceFirst():
Ejemplo 1:
// Java code to illustrate replaceFirst() 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 replaceFirst() method System.out.println("After Replacement: " + matcher .replaceFirst( 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 code to illustrate replaceFirst() 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 = "GFG 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 replaceFirst() method System.out.println("After Replacement: " + matcher .replaceFirst( x -> x.group().toLowerCase())); } }
Producción:
Before Replacement: GFG FGF GFG GFG FGF After Replacement: GFG 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