CSVClinic
● 100% local · nothing uploaded

CSV REPAIR GUIDE

Fix CSV columns collapsed into one.

A “CSV” may use commas, semicolons, tabs, or pipes. Choosing the wrong separator makes every row look like one column or splits quoted text incorrectly. CSV Clinic scores candidate delimiters across complete rows and repairs the result locally.

Open CSV Clinic

Why delimiter detection fails

Counting punctuation is not enough. A notes field can contain many commas inside quotes, while the real separator is a semicolon. Locale settings also make semicolon-separated files common where commas are decimal marks.

Safe repair steps

  1. Inspect several complete rows, not only the header.
  2. Ignore candidate separators that occur inside quoted fields.
  3. Prefer the delimiter that produces a consistent column count.
  4. Preserve embedded line breaks and escaped quotes.
  5. Export to a known delimiter and verify the row width.

Private, deterministic repair

The free tool parses the file in your browser and never sends its contents to the server. It diagnoses comma, semicolon, tab, and pipe formats, then exports normalized comma-separated UTF-8 CSV plus a JSON repair report.

Open CSV Clinic