Text Splitter example 1
Input
, apple,banana,orange
Output
apple banana orange
Splits a comma-separated string into one item per line.
Text Tools
Review practical Text Splitter examples so you can understand expected input, output, and common patterns faster.
Use this text splitter to break one long string into multiple lines based on a separator you choose. It is useful for lists, imports, copied data, tags, quick cleanup, and any workflow where values are packed into one line and need to be separated into easier-to-read items.
Example pages are especially useful for text tools because they show what good input looks like, what kind of output to expect, and how the tool behaves in common scenarios.
Input
, apple,banana,orange
Output
apple banana orange
Splits a comma-separated string into one item per line.
Input
| red|green|blue
Output
red green blue
Useful when the list uses a custom pipe separator.
Fix: Make sure the separator exactly matches the character used in the text.
Fix: Review whether a more specific separator or a CSV-aware tool is needed.
Fix: Follow the expected input format so the tool reads the separator correctly.
After reviewing these examples, run the live tool with your own input. If your task involves a follow-up step, the related page can help you move to the next tool in the workflow.
Open the main Text Splitter page and test your own real input.