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
How about just doing a search and replace for , and $?
,
$
but if you're going to do it.
[^\d.]+