Supported Case Transformations
Text Cleaner offers 11 distinct case conversions covering both natural prose and developer variable naming conventions:
| Case Style | Format Example | Primary Use Case |
|---|---|---|
| UPPERCASE | HELLO WORLD |
Headings, acronyms, emphasis |
| lowercase | hello world |
Standard normalization, URLs |
| Title Case | Hello World |
Headlines, titles, book names |
| Sentence case | Hello world. |
Standard paragraphs and essays |
| camelCase | helloWorld |
JavaScript, Swift, Java identifiers |
| PascalCase | HelloWorld |
TypeScript types, C# classes, React components |
| snake_case | hello_world |
Python variables, database columns |
| CONSTANT_CASE | HELLO_WORLD |
Environment variables, global constants |
| kebab-case | hello-world |
CSS class names, URLs, package names |
| iNVERSE | hELLO wORLD |
Fixing accidental Caps Lock typing |
| aLtErNaTiNg | hElLo WoRlD |
Stylistic text, memes |