Skip to content

Instantly share code, notes, and snippets.

@jonatasemidio
Created June 25, 2015 11:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonatasemidio/63beeae5816e0675d6bd to your computer and use it in GitHub Desktop.
Save jonatasemidio/63beeae5816e0675d6bd to your computer and use it in GitHub Desktop.
snake_case to CamelCase Converter
//Veja o código em execução no groovy console: https://groovyconsole.appspot.com/script/5751247093104640
"user_name".split('_').collect{it[0].toUpperCase()+it.substring(1)}.join()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment