What is this tool?
Convert text case formatting styles between UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, Train-Case, and dot.case.
When to use it?
Helpful for formatting titles, coding variables, query names, or normalizing database tables.
How does it work?
Splits strings using boundary selectors and rebuilds them with custom delimiters and capitalization maps.
Example Conversions
hello world
Title Case: Hello World camelCase: helloWorld snake_case: hello_world
Frequently Asked Questions
What is Train-Case?
Train-Case capitalizes the first letter of each word and separates them with hyphens, similar to HTTP header names.
Does it preserve spacing?
Sentence and Title Case preserveSpacing, while coding cases normalize spaces into punctuation delimiters.