共计 432 个字符,预计需要花费 2 分钟才能阅读完成。
replaceAll()
方法是 Java 中 String
类的一个方法,用于在字符串中替换所有匹配的子字符串。
语法:
public String replaceAll(String regex, String replacement)
参数:
regex
:要替换的子字符串的正则表达式模式。replacement
:用于替换的新子字符串。
返回值:
- 返回一个新的字符串,其中所有匹配的子字符串都被替换为新的子字符串。
使用 replaceAll()
方法时,会将字符串中所有与正则表达式匹配的子字符串都替换为指定的新字符串。
示例:
String str = "Hello, World!";
String newStr = str.replaceAll("o", "x");
System.out.println(newStr);
// 输出:Hellx, Wxrld!
在上面的示例中,replaceAll("o", "x")
将字符串中所有的 o
替换为x
,最终输出结果为Hellx, Wxrld!
。
丸趣 TV 网 – 提供最优质的资源集合!
正文完