I am trying to remove the dollar format from the string \'$1,109,889.23\'. I tried using a regular expression with:
\"[^\\\\d]\"
but then I ge
In Java:
String newString = oldString.replaceAll("$", "");