Created
November 6, 2014 13:18
-
-
Save jeffscottbrown/12f76763613882d5a3a5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~ $ 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