Text Utility
Case conversion, line sorting, text cleaning, and character count — all in one place.
Deep Dive
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.
Who uses this?
- Converting a list of names to title case for a report
- Counting words in an essay or article
- Removing blank lines from a pasted CSV
- Converting a camelCase variable name to snake_case
Examples
Input
the quick brown fox jumps over the lazy dogOutput
The Quick Brown Fox Jumps Over The Lazy DogInput
myVariableNameOutput
my_variable_nameCommon Errors & Fixes
Title case capitalizes articles and prepositions
This is a known simplification. True title case rules (not capitalizing 'the', 'of', 'and') vary by style guide. Apply manual corrections for formal documents.
Line count differs from word processor
Different tools count blank lines differently. The word count excludes blank lines; the line count includes them.
Expert FAQ
What is the difference between title case and sentence case?
Title case capitalizes the first letter of every major word. Sentence case capitalizes only the first word of each sentence.
What does 'Remove extra whitespace' do?
It collapses multiple consecutive spaces and tabs into a single space, and removes leading/trailing whitespace from each line.
Can I sort lines alphabetically?
Yes. Use the 'Sort Lines A→Z' or 'Sort Lines Z→A' option. You can also remove duplicate lines with 'Remove Duplicates'.