Find/Replace using grep and Textwrangler

Viewed 20528

I'm using grep on TextWrangler to find strings of this type:

4,600.00

My regex command is the following:

\d.\d{3}.\d{2}

which seems to find the strings correctly. I would like to replace the string 4,600.00 with 4600.00 as I wish to save the data in a .csv file. How do I remove the comma from each number that I find?

3 Answers
Related