When to convert delimiters
US-centric pipelines expect commas. Finance teams in Germany, France, and Scandinavia send semicolons. BI tools sometimes require tabs. Replacing characters globally is wrong: it will split decimal amounts and addresses.
How this converter avoids splitting fields
The file is parsed with the detected delimiter first. Only then is it serialized with the delimiter you choose. Fields that contain the new delimiter, quotes, or line breaks are wrapped in quotes and interior quotes are doubled.
Example
name;amount "Dupont, Anne";12,50
Converted to comma CSV:
"name","amount" "Dupont, Anne","12,50"
Limitations
If the source delimiter was detected incorrectly, convert after using the detector or the validator. This tool does not merge or split columns.