Convert text case
Paste anything and switch it between the cases you actually need, including the programming ones.
0 characters
Result
0 characters
Questions
- What is the difference between title case and sentence case?
- Title case capitalises every word, the way a headline does. Sentence case capitalises only the first word of each sentence, and it looks for full stops rather than just the start of the box, so a paragraph comes out correctly.
- Why does camelCase handle my existing camelCase correctly?
- The splitter looks for the hump between a lowercase letter and an uppercase one, so getHTTPResponse is read as three words rather than one. Converting between programming cases repeatedly does not degrade the text.
- Is there a length limit?
- No. It runs in your browser, so the only limit is your own machine.