String Splitter
Enter text and a delimiter (character or string). We split and show each part, one per line. Useful for CSV-like data.
Split by delimiter
How it works
We use String.prototype.split(delimiter). Empty parts are included if delimiters are adjacent.
When to use it
Use when parsing CSV columns or log lines.
Frequently asked questions
Regex delimiter?
We use the string as literal. For regex use the regex replace tester.