Split, join, and format text with custom delimiters — perfect for CSV, lists, and data processing
Split text into lines using a custom delimiter
Join multiple lines into a single string with a custom delimiter
Format lines with custom prefix, suffix, and separators
| Mode | Use Case | Example |
|---|---|---|
| Split | Convert delimited text to lines | "a,b,c" → a b c |
| Join | Combine lines with a delimiter | a b c → "a,b,c" |
| Format | Add prefix/suffix to each line | a,b,c → "Line: a" |
Easily split text by custom delimiters, join multiple lines into a single string, or format lines with prefixes and suffixes. Perfect for CSV files, data processing, SQL queries, and programming tasks.