/
Case conversion, line sorting, text cleaning, and character count — all in one place.
A Swiss-army-knife text manipulation tool covering case conversion (upper, lower, title, camel, snake, kebab), word and character counts, whitespace cleanup, line sorting, and duplicate removal. Ideal for quick text normalization tasks without writing any code.
Input
the quick brown fox jumps over the lazy dogOutput
The Quick Brown Fox Jumps Over The Lazy DogInput
myVariableNameOutput
my_variable_nameTitle case capitalizes the first letter of every major word. Sentence case capitalizes only the first word of each sentence.
It collapses multiple consecutive spaces and tabs into a single space, and removes leading/trailing whitespace from each line.
Yes. Use the 'Sort Lines A→Z' or 'Sort Lines Z→A' option. You can also remove duplicate lines with 'Remove Duplicates'.