Skip to content

Instantly share code, notes, and snippets.

@YusukeHosonuma
Created November 9, 2015 14:15
Show Gist options
  • Save YusukeHosonuma/5afb91d8a60adf4ad209 to your computer and use it in GitHub Desktop.
Save YusukeHosonuma/5afb91d8a60adf4ad209 to your computer and use it in GitHub Desktop.
Convert camelize string from underscore string.
def to_camelize(str)
s = str.split(/_/).map{|s| s.capitalize}.join('')
s[0] = s[0].downcase
s
end
underscore = 'apple_orange_banana'
camelize = to_camelize(underscore)
p camelize
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment