Reputation: 755
I have this string "Distrik Timur". I want to remove " from this string.
I thought String value = translatedValue.replace(""","")
will work.But its not working.
Upvotes: 0
Views: 2564
Reputation: 198211
Quotation marks need to be escaped: write translatedValue.replace("\"", "")
.
Upvotes: 1