Groovy GDK equivalent of Apache Commons StringUtils.capitalize(str) or Perl's ucfirst(str) - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T05:53:05Zhttp://stackoverflow.com/feeds/question/681807http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/681807/groovy-gdk-equivalent-of-apache-commons-stringutils-capitalizestr-or-perls-ucf1Groovy GDK equivalent of Apache Commons StringUtils.capitalize(str) or Perl's ucfirst(str)knorv2009-03-25T14:24:59Z2009-03-26T00:46:27Z
<p><b>Yes/no-question: Is there a Groovy GDK function to capitalize the first character of a string?</b></p>
<p>I'm looking for a Groovy equivalent of Perl's ucfirst(..) or Apache Commons StringUtils.capitalize(str) (the latter capitalizes the first letter of all words in the input string).</p>
<p>I'm currently coding this by hand using ..</p>
<pre><code>str = str[0].toUpperCase() + str[1 .. str.size() - 1]
</code></pre>
<p>.. which works, but I assume there is a more Groovy way to do it. I'd imagine ucfirst(..) being a more common operation than say center(..) which is a standard method in the Groovy GDK (see <a href="http://groovy.codehaus.org/groovy-jdk/java/lang/String.html" rel="nofollow">http://groovy.codehaus.org/groovy-jdk/java/lang/String.html</a>).</p>
http://stackoverflow.com/questions/681807/groovy-gdk-equivalent-of-apache-commons-stringutils-capitalizestr-or-perls-ucf/681850#6818503Answer by Vladimir for Groovy GDK equivalent of Apache Commons StringUtils.capitalize(str) or Perl's ucfirst(str)Vladimir2009-03-25T14:33:09Z2009-03-25T14:45:13Z<p>I'm not aware of any such method, but a workaround is to directly use the Apache Commons library in your Groovy code:</p>
<pre><code>import org.apache.commons.lang.StringUtils
def str = StringUtils.capitalize(input)
</code></pre>
<p>It makes your Groovy code a bit Java-ish (some may not like it) but it does the job.</p>
<p>IMO the great advantage of Groovy is that you can very easily leverage all the Java libraries you normally use with a more traditional Java code base.</p>
http://stackoverflow.com/questions/681807/groovy-gdk-equivalent-of-apache-commons-stringutils-capitalizestr-or-perls-ucf/684097#68409710Answer by Ted Naleid for Groovy GDK equivalent of Apache Commons StringUtils.capitalize(str) or Perl's ucfirst(str)Ted Naleid2009-03-26T00:46:27Z2009-03-26T00:46:27Z<p>No, nothing built directly into the language. </p>
<p>There are a couple of more groovy ways to do what you're asking though (if you don't want to use StringUtils in the Java idiomatic way as Vladimir suggests).</p>
<p>You can simplify your method using a negative value in the second half of your range:</p>
<pre><code>def str = "foo"
assert "Foo" == str[0].toUpperCase() + str[1..-1]
</code></pre>
<p>Or you can use an import static to make it look like a native method:</p>
<pre><code>import static org.apache.commons.lang.StringUtils.*
assert "Foo" == capitalize("foo")
</code></pre>
<p>You can also modify the metaClass to have all of StringUtils methods right on it, so it looks like a GDK method:</p>
<pre><code>import org.apache.commons.lang.StringUtils
String.metaClass.mixin StringUtils
assert "Foo" == "foo".capitalize()
</code></pre>