| Option | Description |
|---|---|
Case Settings | Defines the desired case style to apply to the input text.
Example Input Text - This is an example text. UPPER CASE - THIS IS AN EXAMPLE TEXT. |
Remove Whitespaces | Defines whether to remove extra whitespaces from the input text. This option
respects the language-specific whitespace rules and ensures that the text formatting
remains correct for the given language.
Example Input Text - This is an example text. Output Text - This is an example text. |
Five transformations, each solving a different problem:
Capitalizes the first letter of each sentence and lowercases the rest. This is the fix for text that arrived in ALL CAPS — pasted from a legacy system, a spreadsheet export, or a form where someone left caps lock on.
Every letter capitalized. Useful for constants, headings, and short labels. Avoid it for long passages: uppercase text removes the distinctive ascenders and descenders that make word shapes recognizable, so it reads measurably slower.
Everything lowercased. The usual first step when normalizing data for comparison, since "Smith" and "SMITH" are different strings to a computer but the same name to a person.
Capitalizes the start of each word. Standard for headings, article titles, and product names. Note that this capitalizes every word, whereas strict editorial style guides leave short articles and prepositions lowercase — so check headlines by eye afterward.
Flips the case of every letter. Genuinely useful in one situation: text typed with caps lock on and shift held, which arrives as the exact inverse of what was intended. One pass restores it.
Whitespace problems are invisible, which is what makes them irritating. Text copied out of a PDF, a web page, or an email quotation routinely carries trailing spaces at the end of lines, doubled spaces between sentences, and indentation that made sense in the source and none in the destination.
Those extra characters are real. They break exact-match comparisons, defeat lookups on a supposedly identical key, throw off character counts against a field limit, and produce ragged alignment when the text is displayed somewhere else. Collapsing runs of whitespace and trimming the ends removes an entire category of "but it looks the same" bugs.
No. Only capitalization and spacing change. No words are added, removed, or reordered, and punctuation is left alone.
Not from the result alone. Lowercasing discards which letters were capitals, and that information cannot be recovered — so keep the original if the text matters.
Yes. Case conversion follows your browser's Unicode rules, so accented Latin characters, Greek, and Cyrillic convert correctly. Scripts without letter case, such as Chinese, Japanese, and Arabic, pass through unchanged.
No fixed limit. Processing happens in your browser, so the practical ceiling is your device's memory. Documents of ordinary length are instant.
No. Formatting runs entirely in your browser and nothing is transmitted or stored, so it is safe to clean up confidential documents here.
The website uses cookies for essential functionality. With your consent, we also use them for analytics, personalization, and personalized ads. Ads are shown either way — without consent they are non-personalized.