1. Converting Tab-Separated Data to CSV
Data AnalystBackground
An analyst received a report from a legacy system in TSV format that needs to be imported into Excel.
Problem
Excel struggles to auto-detect tab-separated files correctly, leading to data misalignment.
How to use
Paste the TSV data, select 'TSV' as the input format, and click convert.
inputFormat: 'tsv', includeHeader: true, quoteMode: 'auto'Outcome
A perfectly formatted CSV file where each tab is replaced by a comma, ready for immediate import.