Java replaceFirst() 方法

replaceFirst() 方法使用给定的参数 replacement 替换字符串第一个匹配给定的正则表达式的子字符串。

语法

  1. public String replaceFirst(String regex, String replacement)

参数

  • regex — 匹配此字符串的正则表达式。

  • replacement — 用来替换第一个匹配项的字符串。

返回值

成功则返回替换的字符串,失败则返回原始字符串。

实例

  1. public class Test {
  2. public static void main(String args[]) {
  3. String Str = new String("hello baidu,I am from baidu。");
  4. System.out.print("返回值 :" );
  5. System.out.println(Str.replaceFirst("baidu", "google" ));
  6. System.out.print("返回值 :" );
  7. System.out.println(Str.replaceFirst("(.*)baidu(.*)", "google" ));
  8. }
  9. }

以上程序执行结果为:

  1. 返回值 :hello googleI am from baidu
  2. 返回值 :google