Text Utility

Case conversion, line sorting, text cleaning, and character count — all in one place.

Words
0
Characters
0
Lines
0
Reading Time
~1m

Case

Transform

Clean

Detailed Stats

Words
0
Characters
0
Chars (no spaces)
0
Lines
0
Sentences
0
Paragraphs
0
Reading Time
~1 min

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

Convert to title case

Input

the quick brown fox jumps over the lazy dog

Output

The Quick Brown Fox Jumps Over The Lazy Dog
camelCase to snake_case

Input

myVariableName

Output

my_variable_name

Common 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'.

Alternatives

TextMechanic.comConvert CaseSublime Text multi-cursor editing