Split Text Online – Free Text Separator

Split text online with this free tool. Split by characters, words, or chunks, remove empty lines, and format text easily.

Input Text

Split Options
Output Options

Output

Examples of Text Splitting

1. Using regex for splitting text.

Scenario: You have a text where words are joined by numbers, and you want to separate them by removing the numbers.

Input: apple123banana456cherry789date

Split option (Use regex for splitting): \d+

Output:
apple
banana
cherry
date

2. Splitting text into a specific number of chunks.

Scenario:You have a long paragraph and want to divide it into a specific number of evenly sized chunks.

Input: The quick brown fox jumps over the lazy dog and runs into the forest to find its friends.

Split option (Split by number of chunks):3

Output:
The quick brown fox jumps over
the lazy dog and runs into th
e forest to find its friends.

3. Splitting text by a specific length.

Scenario: You need to break a long text into chunks of a fixed length for better readability.

Input: Thequickbrownfoxjumpsoverthelazydog.

Split option (Split by length):5

Output:
Thequ
ickbr
ownfo
xjump
sover
thela
zydog
.

4. Splitting text by a symbol with custom formatting.

Scenario: You have a list of names separated by hyphens and want to format them as a comma-separated list with each name enclosed in quotes.

Input: Rob-Sam-Lina-Tim-Dante-Sunny-Mia-Mikey-Vicky

Split option (Split by symbol): -

Character Before Each Chunk: "

Character After Each Chunk: "

Character Between Chunks: , with space

Output:
"Rob", "Sam", "Lina", "Tim", "Dante", "Sunny", "Mia", "Mikey", "Vicky"


Related Text Tools