Why a CSV may not use commas
CSV is often used as a general name for delimited text. European exports frequently use semicolons when commas are decimal separators. Database tools may emit tab-separated files, and logs or integration feeds sometimes use pipes. A .csv filename therefore does not prove that the separator is a comma.
Choosing the wrong delimiter makes an entire record appear in one column or splits values in unexpected places. Detection is a useful first step when a spreadsheet, database importer, or analytics platform opens a file incorrectly.
- Comma-separated exports
- Tab-separated TSV data
- Semicolon-delimited regional files
- Pipe-delimited system feeds