Split Text
Split by delimiter, or group by a fixed number of lines. Great for chunking content for batch processing or formatting. 100% local in-browser.
Supports escapes: \\n (newline), \\t (tab). Default splits by newline.
Splits into groups of N lines and adds a simple separator in output.
What is a text splitter?
A text splitter breaks a large piece of text into smaller parts—either by a delimiter (comma, newline, tab, etc.) or by grouping a fixed number of lines. It’s helpful when you need to chunk content for batch processing or manual review.
How to use
- Paste your text into the input box.
- Select By delimiter or Group by lines.
- Configure the delimiter or the number of lines per group.
- Toggle Remove empty parts to keep the output clean.
Common use cases
- Splitting a comma-separated list into one item per line.
- Grouping long logs into batches of N lines.
- Breaking a big prompt or dataset into smaller chunks.
FAQ
Can I split by newline or tab?
Yes. Use \\n for newline and \\t for tab.
Why are separators added in “Group by lines”?
Group mode adds a simple header (e.g., --- Group 1 ---) to make blocks easier to scan. You can remove them manually if needed.
Is my text uploaded?
No. Splitting runs locally in your browser by default.