How to split a list
- Paste your text into the input box on the left. The split items appear instantly in the output panel on the right.
- Choose a delimiter from the toolbar — Newline (↵), Comma (,), Semicolon (;), Space (␣), Tab (⇥), or Custom. The default is Comma.
- Configure options below the panels — trim whitespace from each item, remove empty items, and optionally number the output.
- Copy the output with the copy button. Items are copied newline-separated, with numbers if Number output is enabled.
Delimiter guide
Comma (,)
apple, banana, cherryThe most common delimiter. Used in CSV exports, tag lists, and keyword lists. Enable Trim items to clean up spaces after commas.
Newline (↵)
apple
banana
cherrySplits by line breaks. Use this when each item is already on its own line — for example, a bullet list copied from a document.
Semicolon (;)
apple; banana; cherryCommon in European CSV formats and some programming contexts where commas appear inside values.
Space (␣)
apple banana cherrySplits on one or more consecutive spaces. Useful for splitting a sequence of words into individual tokens.
Tab (⇥)
apple banana cherryUsed in TSV (tab-separated values) exports from spreadsheets. Each cell becomes one list item.
Custom
apple | banana | cherryEnter any character or string as the delimiter. Supports multi-character separators like " | ", " :: ", or " - ".
Use cases
CSV to list
Split a comma-separated export into individual items. Great for turning spreadsheet rows into clean lists.
Keyword list from a string
Turn a comma-separated keyword string from an SEO tool into individual keywords you can work with.
Tag cloud parsing
Split a block of tags separated by commas or semicolons into individual items for counting or processing.
Sentence word tokenization
Split a sentence by space to get individual words. Useful for manual counting or word frequency analysis.
TSV data extraction
Paste a tab-separated row from a spreadsheet export and split it into individual cell values.
Pipe-delimited list cleanup
Some databases and exports use pipe (|) as a separator. Use the Custom delimiter option to handle any format.
Related tools: Merge Lists to combine multiple lists, Duplicate Line Remover to clean up the result, or Alphabetical Sorter to sort your split items.