Given a snake_case formatted string, convert it to camelCase format. The first word remains in its original form, and the first letter of each subsequent word is capitalized with the rest in lowercase. Return null for null input and an empty string for empty input.
Examples:
Input: input = 'hello_world'
Output: 'helloWorld'
Explanation: The underscore is removed and 'w' is capitalized
Input: input = 'first_name_value'
Output: 'firstNameValue'
Explanation: Each word after the first has its first letter capitalized
Input: input = 'hello'
Output: 'hello'
Explanation: No underscores present, string is returned unchanged
Input: input = null
Output: null
Input: input = ''
Output: ''
Apex Code Editor
Welcome to Lightning Challenge!
How It Works
- • Write your solution in the code editor
- • Connect your Salesforce org to test
- • Submit to check if your solution passes
- • Use hints if you get stuck
Contest Alert
🏆 #CodeEveryDay July 2026
Contest runs July 1 - 31. Complete challenges to climb the leaderboard!
Only the 31 daily challenges shown during this contest count toward points. Earlier dailies don't carry over.