- TSV or CSV — which is better?
- Depends. TSV: simpler (no quoting needed for commas), better for programmatic processing. CSV: universal standard, better for spreadsheet imports.
- What about newlines in values?
- Rare in TSV (you usually shouldn't). Common in CSV (RFC 4180 allows them in quoted fields). The converter preserves multi-line values correctly.
- Does it detect the source format?
- Yes — by looking at the delimiter in the first row. Manual override available for edge cases.
- Can I convert to pipe-delimited?
- Toggle delimiter: comma, tab, semicolon, pipe. Extends to any single-character delimiter. For complex delimiters write a custom script.