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("\"", "\"\"");
文字列は不変であるため、別の文字列に割り当てる必要があります。