Title Case to camelCase Converter
Convert Title Case text to camelCase — one line or a whole list at once.
To convert Title Case to camelCase, paste your text above and the result updates as you type. User Account Id becomes userAccountId. Word boundaries are detected from the existing casing, so an identifier does not need separators to be split correctly. camelCase is the convention for variables and functions in JavaScript, Java and C#.
Runs in your browserAbout converting TITLECASE to CAMELCASE
Title Case is for prose headings rather than code — it is what you convert an identifier into when it becomes a label in a user interface. camelCase is the convention for variables and functions in JavaScript, Java and C#. Converting Title Case to camelCase turns User Account Id into userAccountId; acronyms are the awkward case in every direction, since "userID" and "userId" split differently and only one of them round-trips.