标签: java string replaceall
如何在Java中的"中替换单个引号String?不是引用中的单词。
"
String
答案 0 :(得分:6)
String s = someotherstring.replace("\"",""); // replace all occurrences of "
答案 1 :(得分:2)
将其作为参数传递给String#replace。
示例:要使用"替换任何x,请使用:
x
myString.replace('"', 'x');