World's simplest browser-based utility for splitting text. Input your text and specify a separator to split it into multiple parts. Perfect for data processing, text manipulation, or extracting specific content from larger text blocks.
Input text
Split Result
Tool options
Split separator options
Use a Symbol for Splitting
Character that will be used to break text into parts. (Space by default.)
Use a Regex for Splitting
Regular expression that will be used to break text into parts. (Multiple spaces by default.)
Use Length for Splitting
Number of characters that will be put in each output chunk.
Use a Number of Chunks
Number of chunks of equal length in the output.
Output Separator Options
Character that will be put between the split chunks. (It's newline "\n" by default.)
Character before each chunk
Character after each chunk
Split Examples
Click to try!
In this example, we break the text into pieces by two characters – a comma and space. As a result, we get a column of numbers from 1 to 10 in German.
Split separator options
Use a Symbol for Splitting
Character that will be used to break text into parts. (Space by default.)
Use a Regex for Splitting
Regular expression that will be used to break text into parts. (Multiple spaces by default.)
Use Length for Splitting
Number of characters that will be put in each output chunk.
Use a Number of Chunks
Number of chunks of equal length in the output.
Output Separator Options
Character that will be put between the split chunks. (It's newline "\n" by default.)
Character before each chunk
Character after each chunk
In this example, we use a super smart regular expression trick to clean-up the text. This regexp finds all non-alphabetic characters and splits the text into pieces by these non-alphabetic chars. As a result, we extract only those parts of the text that contain Latin letters and words.
Split separator options
Use a Symbol for Splitting
Character that will be used to break text into parts. (Space by default.)
Use a Regex for Splitting
Regular expression that will be used to break text into parts. (Multiple spaces by default.)
Use Length for Splitting
Number of characters that will be put in each output chunk.
Use a Number of Chunks
Number of chunks of equal length in the output.
Output Separator Options
Character that will be put between the split chunks. (It's newline "\n" by default.)
Character before each chunk
Character after each chunk
This example splits the text by spaces and then places three dots between the words.
Split separator options
Use a Symbol for Splitting
Character that will be used to break text into parts. (Space by default.)
Use a Regex for Splitting
Regular expression that will be used to break text into parts. (Multiple spaces by default.)
Use Length for Splitting
Number of characters that will be put in each output chunk.
Use a Number of Chunks
Number of chunks of equal length in the output.
Output Separator Options
Character that will be put between the split chunks. (It's newline "\n" by default.)
Character before each chunk
Character after each chunk