public String plusOut(String str, String word){
String bob = str.replaceAll(^word,"+");
return bob;
}
示例输入和输出:
我想用String +(
)替换String(str)中的所有字符串(字符串)plusOut("1234xy5678", "xy") == "++++xy++++"
plusOut("ghlnds4pl4qwqd4", "4") == "++++++4++4++++4"
^ word< ---如何让方法替换除了
之外的所有内容我想用" +"替换我的String(str)除了字符串(单词)。我将如何使用replaceAll方法执行此操作。