Reverse strings, sort lines alphabetically, remove duplicates, trim whitespace, count occurrences, and split or join text with a custom delimiter—all in one tool.
String Utilities is a versatile text-manipulation toolkit that bundles the most common string operations into a single, easy-to-use interface. Reverse entire strings or line-by-line, sort lines alphabetically or numerically in ascending or descending order, deduplicate repeated lines, strip leading and trailing whitespace, count how many times a substring occurs, and split or join content with any delimiter you specify. Every operation is applied instantly and can be chained—run sort first, then deduplicate, then trim—so you can clean up messy data exports, normalize config lists, or pre-process log files in seconds without writing a single line of code.
QCan I chain multiple operations together?
Yes. Each operation modifies the current text in the editor. Apply sort, then remove duplicates, then trim whitespace in sequence to produce clean output.
QWhat delimiters are supported for the split/join operations?
You can specify any character or string as a delimiter—commas, tabs, pipes, semicolons, or even multi-character sequences like ' | ' are all supported.
QIs the duplicate removal case-sensitive?
You can toggle case sensitivity. In case-insensitive mode, 'Apple', 'apple', and 'APPLE' are treated as the same line and only the first occurrence is kept.
QDoes sorting handle numbers correctly?
Yes. Enabling numeric sort mode orders lines by their numeric value rather than lexicographic order, so '10' sorts after '9' rather than before '2'.