當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Matcher replaceFirst(Function)用法及代碼示例


Matcher類的replaceFirst(Function)方法的行為與append-and-replace方法相同。此方法用參數中傳遞的函數替換匹配器中匹配的模式的第一個實例。

用法:

public String replaceFirst(
        Function replacerFunction)

參數:此方法采用參數replacerFunction,該參數定義了匹配器的替換。


返回值:此方法返回一個String,其目標String通過替換String進行構造。

異常:此方法引發以下異常:

  • NullPointerException :如果replacer函數為null
  • ConcurrentModificationException:如果檢測到替換函數修改了此匹配器的狀態

下麵的示例說明Matcher.replaceFirst()方法:

示例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())); 
    } 
}

輸出:

Before Replacement: GeeksForGeeks Geeks for For Geeks Geek
After Replacement: GEEKSForGeeks Geeks for For Geeks Geek

示例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())); 
    } 
}

輸出:

Before Replacement: GFG FGF GFG GFG FGF
After Replacement: GFG fgf GFG GFG FGF

參考: https://docs.oracle.com/javase/9/docs/api/java/util/regex/Matcher.html#replaceFirst-java.util.function.Function-



相關用法


注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Matcher replaceFirst(Function) method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。