I have some csv files which have been incorrectly exported. Some fields containing numbers have been incorrectly exported as Strings with the decimal place as a comma instead of a dot.
Here's a couple of examples:
"GREEN,"15,4",55,"15,5",64,"17,0","18,9",107,145,21,38,
"BLUE","15,1",46,"15,2",51,"11,4","13,5",89,96,25,7,
So, I want to switch the commas to dots for numbers in quotation marks and then remove the quotation marks from all numbers.
Can anyone help me out here please?