What is Text Split?
Break text into multiple pieces three ways: split on a delimiter (comma, space, custom), split every N characters, or divide into N roughly equal parts. The result shows one piece per line, ready to copy.
How Text Split works
Depending on the mode, the tool splits on your delimiter, slices the text into fixed-length chunks, or divides the total length into the requested number of parts.
Example: splitting 'a,b,c' on a comma yields three lines: a, b, c.
Common uses
- Split CSV or delimited text into lines
- Chunk text into fixed-size pieces
- Divide content into equal parts
- Prepare text for further processing
Frequently asked questions
What split modes are there?
By delimiter, by character count, or into N equal parts.
Can I split on a custom delimiter?
Yes — type any delimiter, including escape sequences like \n or \t.
Is it private?
Yes — splitting happens in your browser.