Split Text into Chunks

Divide text by line count or grapheme-character limit and download each chunk separately.

Loading Split Text into Chunks...

How to use

Choose a maximum size. Line mode groups whole lines. Character mode counts user-perceived graphemes and can prefer a whitespace or newline boundary without creating an empty chunk.

Example

Input
one two three four
Output
one two --- chunk --- three four

Limitations

At most 200 chunks can be created; increase the size or shorten the input if a configuration exceeds that bound. A single word or line longer than the character limit is split when no usable boundary occurs within the chunk. Output preview separators are not included in downloads.

Frequently Asked Questions

Does character mode split emoji?

It uses Intl.Segmenter grapheme boundaries, so supported emoji sequences and combining characters stay together.

How are chunks downloaded?

Each chunk is returned as a numbered UTF-8 text file such as chunk-001.txt, with a maximum of 200 files per run.