Text to CSV converter
Transformed in your browser · nothing is uploaded
Converts between a column of lines and a delimited row, in either direction, trimming whitespace and dropping empty values.
How to use the text to csv converter
This is the simple direction of CSV work — joining and splitting a single list. It is deliberately not a CSV writer: it does not quote values containing the separator, because for a single list of simple values quoting adds noise, and for anything where quoting matters you want a real CSV tool. If your values might contain commas, either pick a different separator or use the JSON to CSV converter, which quotes properly. The trimming matters more than it looks: a value with a trailing space will not match anything downstream and the space is invisible in the source.
Questions
No. For a simple list that adds noise; if your values contain the separator, change it or use the JSON to CSV converter.