Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道我哪里出错了。我想替换"为"" 我使用了以下代码。
"
""
input.replaceAll("\"", "\"\"");
这似乎不起作用。有什么建议么?
字符串是不可变的,所以当你“改变”你的字符串时,你需要重新分配它。
input = input.replaceAll("\"", "\"\"");
字符串是不可变的,因此您需要将其分配给另一个字符串: