UPPERCASE to camelCase Converter
Convert UPPERCASE text to camelCase — one line or a whole list at once.
To convert UPPERCASE 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 UPPERCASE to CAMELCASE
Full uppercase is a display choice, not a naming convention. Set it in CSS with text-transform rather than in the data, so the original stays searchable. camelCase is the convention for variables and functions in JavaScript, Java and C#. Converting UPPERCASE 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.