CSV to TSV Converter
The CSV to TSV converter parses quoted CSV correctly and re-emits it as tab-separated values, so the result pastes straight into a spreadsheet. Tabs and line breaks inside fields are escaped so columns never shift.
Your result will appear here.
Not sure where to start? Use Load example.
Results update automatically and are calculated on your device. Nothing you type is sent to a server.
Runs in your browser. Processing happens entirely in your browser. Nothing you enter is sent to Delimiter.live.
How to use the CSV to TSV Converter
- Paste your CSV data or load a .csv file.
- Confirm the input delimiter, or leave detection on.
- Copy the TSV and paste it straight into a spreadsheet.
Example
name,role Ada,"Mathematician, writer"
name role Ada Mathematician, writer
Common use cases
- Pasting CSV data into Excel or Google Sheets without an import dialog.
- Feeding a tool that expects tab-separated input.
- Removing CSV quoting so the values are easier to read.
Limitations and things to watch for
- TSV has no standard quoting mechanism, so a tab or line break inside a value would break the column alignment. Those characters are escaped as \t and \n in the output rather than being emitted raw.
- Quoted CSV fields are unquoted in the result, which is the point of the conversion.