替换单个" (引号)

时间:2015-01-30 16:15:22

标签: java string replaceall

如何在Java中的"中替换单个引号String?不是引用中的单词。

2 个答案:

答案 0 :(得分:6)

String s = someotherstring.replace("\"",""); // replace all occurrences of "

答案 1 :(得分:2)

将其作为参数传递给String#replace

示例:要使用"替换任何x,请使用:

 myString.replace('"', 'x');