replaceFirst() 方法使用给定的参数 replacement 替换字符串第一个匹配给定的正则表达式的子字符串。
public String replaceFirst(String regex, String replacement)
regex -- 匹配此字符串的正则表达式。
replacement -- 用来替换第一个匹配项的字符串。
成功则返回替换的字符串,失败则返回原始字符串。
public class Test { public static void main(String args[]) { String Str = new String("hello jb51,I am from jb51。"); System.out.print("返回值 :" ); System.out.println(Str.replaceFirst("jb51", "google" )); System.out.print("返回值 :" ); System.out.println(Str.replaceFirst("(.*)jb51(.*)", "google" )); } }
以上程序执行结果为:
返回值 :hello google,I am from jb51。 返回值 :google
在线实例
字符集 & 工具
最新更新
站点信息
关注我们