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.
'を\'使用して交換すると、機能しString.replaceAll()ません。
'
\'
String.replaceAll()
String t="It can't be done"; String title=t.replaceAll("'", "\\\'"); syso(title);
期待される出力: 実行できません
スラッシュを二重にエスケープする必要がある場合があります。
t.replaceAll("'", "\\'")
異常な出力ですが、追加のスラッシュが 1 つ必要です\:
\
t.replaceAll("'", "\\\\'")