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!

Create an Account

Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.

Create account

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 Mar/April 2026

Contest runs March 3 - April 30. Complete challenges to climb the leaderboard!

Points are calculated for challenges completed during the contest period.