string的replace和replaceall
时间: 2023-06-05 07:47:51 浏览: 107
js replace 与replaceall实例用法详解
string的replace和replaceall都是字符串替换的方法。
replace方法用于替换字符串中的指定字符或字符串,只会替换第一个匹配项。例如:
```
String str = "hello world";
str = str.replace("o", "a");
System.out.println(str); // 输出:hella world
```
replaceall方法用于替换字符串中的指定字符或字符串,会替换所有匹配项。例如:
```
String str = "hello world";
str = str.replaceAll("o", "a");
System.out.println(str); // 输出:hella warld
```
需要注意的是,replace和replaceall都是返回一个新的字符串,原字符串不会被修改。
阅读全文