java语言的String类replaceall方法如何保留原本的字符串,在它旁边添加新的字符?
时间: 2023-03-27 20:00:26 浏览: 232
replaceAll()如何同时替换多个不同的字符串(或多个符号)
你可以使用正则表达式来匹配需要替换的字符串,然后在替换的字符串中使用$来表示匹配到的原字符串,从而保留原本的字符串。例如,可以使用以下代码实现在字符串中添加新的字符:
String str = "hello world";
String newStr = str.replaceAll("world", "$, welcome to the world");
System.out.println(newStr);
输出结果为:hello world, welcome to the world。
阅读全文