位置:首页 > 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.