There is a string like
123.0,234,5677, "34.56", 34.56,67.89
That is, all normal numbers have a period separator and are separated by commas, but some have a comma separator and for separation are placed in quotation marks, and a space as an order separator ("1,000.00") is possible inside.
How do I write Regexp which replaces all the wrong numbers with the correct ones, that is, with a dot with a separator?
"12.34"
- ReinRaus 8:49 PM