欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

浅谈Java中replace与replaceAll区别

程序员文章站 2024-02-26 12:45:16
看门见山 1.java中replace api: replace(char oldchar, char newchar):寓意为:返回一个新的字符串,它是通过用 new...

看门见山

1.java中replace api:

replace(char oldchar, char newchar):寓意为:返回一个新的字符串,它是通过用 newchar 替换此字符串中出现的所有 oldchar 得到的。

replace(charsequence target, charsequence replacement):寓意为:使用指定的字面值替换序列替换此字符串所有匹配字面值目标序列的子字符串。

replaceall(string regex, string replacement):寓意为:使用给定的 replacement 替换此字符串所有匹配给定的正则表达式的子字符串。

可以看出replace的参数是char与charsequence,而replaceall参数为regex(正则表达式)与replacement

2.举个栗子:

@test
 public void teststring(){
  string str="wel2come3souhe0";
  system.out.println(str.replace("e","e"));
  system.out.println(str.replace('e','e'));
  system.out.println(str.replaceall("\\d","a"));
  system.out.println(str.replaceall("3","9"));
 }

执行结果为:

1 wel2come3souhe0
2 wel2come3souhe0
3 welacomeasouhea
4 wel2come9souhe0

3.总结结果:replace替换字符与字符串都是一样的,replace可以根据除了字符串替换外还可以正则表达式来进行替换;

4.多了解一个:

replacefirst(string regex, string replacement) 使用给定的 replacement 替换此字符串匹配给定的正则表达式的第一个子字符串。

举个栗子:

 @test
2  public void teststring(){
3   string str="wel2come3souhe0";
4   system.out.println(str.replacefirst("\\d","a"));
5  }

执行结果为:

welacome3souhe0

 总结:只替换第一次出现的匹配的正则表达式;

完毕!

使用给定的 replacement 替换此字符串所有匹配给定的正则表达式的子字符串。

以上所述是小编给大家介绍的java中replace与replaceall区别详解整合,希望对大家有所帮助