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.
ReplaceAll().たとえば、ReplaceAll(""","")アンドロイドが機能していないときに特殊文字を置き換える方法はありますか
ReplaceAll().
ReplaceAll(""","")
次の文を使用する
replaceAll("\"","");
エスケープには \ を使用する必要があります ".
replace()代わりに次を使用する必要があります。
replace()
str = str.replace("\"", "");
replaceAll()正規表現の置き換えに使用されます。
replaceAll()