kebab-case to camelCase Converter
Convert kebab-case text to camelCase — one line or a whole list at once.
To convert kebab-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 KEBABCASE to CAMELCASE
kebab-case is used for URLs, CSS class names and HTML attributes. It cannot be a variable name in most languages, because the hyphen reads as subtraction. camelCase is the convention for variables and functions in JavaScript, Java and C#. Converting kebab-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.