位置:首頁 > Java技術 > java實例教學 > Java替換第一個出現字符串

Java替換第一個出現字符串

怎麼算替換第一個出現字符串?

解決方法

下麵的例子演示了如何在String中使用Matcher類的replaceFirst()方法替換字符串的第一個匹配項。

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Main {
   public static void main(String args[]) {
      Pattern p = Pattern.compile("hello");
      String instring = "hello hello hello.";
      System.out.println("initial String: "+ instring);
      Matcher m = p.matcher(instring);
      String tmp = m.replaceFirst("Java");
      System.out.println("String after replacing 1st Match: "
      +tmp);
   }
}

結果

上麵的代碼示例將產生以下結果。

initial String: hello hello hello.
String after replacing 1st Match: Java hello hello.