I have a string with "Dollars" and "Cents" symbol in it. I want to remove them. I tried
string.replaceAll("[\"\\u00A2\" $]", "")
but its not working. What is the correct way to do it.
I have a string with "Dollars" and "Cents" symbol in it. I want to remove them. I tried
string.replaceAll("[\"\\u00A2\" $]", "")
but its not working. What is the correct way to do it.