Split text by delimiter — newline, comma, space, or custom separator. Free online text splitter for parsing and organizing data.
The split text tool breaks your text into multiple parts based on a chosen delimiter. You can split by newline, comma, space, or a custom character/string. Each resulting part is displayed on a separate line, making it easy to see and work with individual segments. This is useful for parsing CSV data, breaking down sentences, extracting items from lists, and organizing unstructured text.
| Input | Output |
|---|---|
| apple,banana,cherry | apple banana cherry (split by comma) |
| hello world | hello world (split by space) |
| a|b|c|d | a b c d (split by "|") |