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
[\d,.]+ would give you the number part. Here is your example on Rubular.
[\d,.]+