Skip to content

Instantly share code, notes, and snippets.

@jeffscottbrown
Created November 6, 2014 13:18
Show Gist options
  • Save jeffscottbrown/12f76763613882d5a3a5 to your computer and use it in GitHub Desktop.
Save jeffscottbrown/12f76763613882d5a3a5 to your computer and use it in GitHub Desktop.
~ $ cat capitalization.groovy
// see http://stackoverflow.com/questions/26769421/is-xstage-for-any-x-reserved-in-grails
['TStage', 'TheStage', 'TSTAGE'].each { name ->
println "${name} decapitalizes to ${java.beans.Introspector.decapitalize(name)}"
}
~ $ groovy capitalization.groovy
TStage decapitalizes to TStage
TheStage decapitalizes to theStage
TSTAGE decapitalizes to TSTAGE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment