Line splitter
Transformed in your browser · nothing is uploaded
Converts between a delimited list and one item per line, in either direction. Whitespace around each item is trimmed and empty entries are dropped.
How to use the line splitter
This is the small piece of data plumbing that comes up constantly: a spreadsheet column needs to become a comma-separated list for a query, or a comma-separated list needs to become a column to paste back into a spreadsheet. Both directions trim whitespace, which matters because " apple" and "apple" are different values to almost everything downstream. One limitation to be aware of: this splits on the separator wherever it appears, so it is not a CSV parser — a value containing a quoted comma will be split in the middle. For real CSV, use a CSV tool.
Questions
Yes, put any string in the separator field — a semicolon, a pipe, a tab.