Regex to remove commas within quotes. (Common situtaion in .csv files)
Eg: data,"some ""embedded"" stuff,commas,inside,quotes",more
Replace String would be something like this: \1&\2&\3&\4&\5&\6&\7&\8&\9
which would replace the commas inside the quotes with '&'s Caveats:
Work in progress ...