简体   繁体   中英

How to replace escape character in Android Studio?

How can I replace escape character in Android? I have tried this but with no success:

 String a =finalObject.getString("icon").replaceAll("\ ", "");

Before I can replace it, Android Studio is already giving me error.

Which escape character do you want to replace?
If you want to replace the character --> \\
you should write like this --> "\\\\"
and,
" --> "\\""
' --> "\\'"

字符串a = finalObject.getString(“ icon”)。replace(“ \\\\”,“”);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM