↔️ Delimiter Converter & Column Transposer
Convert a list or table from one delimiter to another — comma, tab, newline, pipe, semicolon — and optionally transpose rows into columns.
How the delimiter converter & column transposer works
The converter splits each line by the chosen delimiter and re-joins the fields with another — turning a comma-separated list into one-per-line, a CSV row into tab-separated, and so on. With transpose enabled, the grid is flipped so rows become columns, which is handy for reshaping small tables.
A fast, deterministic reshaping tool for lists and small tables — the kind of exact structural transform that is tedious by hand and unreliable to ask an AI for.
Frequently asked questions
What can I convert between?
Any pair of common delimiters: comma, tab, semicolon, pipe, space and newline. For example, paste a comma-separated list and output it one item per line, or turn newline-separated values into a CSV row.
What does transpose do?
It swaps rows and columns — the first field of every line becomes the first row of output, and so on. Useful for flipping a small table’s orientation.
Can it turn a list into CSV?
Yes — split by newline and join with commas to build a single comma-separated row, or the reverse to break a CSV row into a list.
Does it handle quoted CSV fields?
It does simple delimiter splitting, which covers most lists and clean tables. For quoted fields with embedded commas, use the dedicated CSV tools in File Converters.
Is my text uploaded?
No — the conversion runs entirely in your browser.