Tagged Questions

7
votes
3answers
3k views

Groovy GDK equivalent of Apache Commons StringUtils.capitalize(str) or Perl's ucfirst(str)

Yes/no-question: Is there a Groovy GDK function to capitalize the first character of a string? I'm looking for a Groovy equivalent of Perl's ucfirst(..) or Apache Commons StringUtils.capitalize(str) ...
1
vote
1answer
50 views

Bug in the Groovy 1.8.0 String class .tokenize(String) method?

Messing around with Groovy for a work project I ran into this oddity: def string = "__RNDHPD(70.2300000..70.2310000)" def params = [] string.find(/(?<=\().*?(?=\))/).tokenize("..").each { params ...
1
vote
2answers
839 views

Using Groovy comparison operators with Date objects

I'm investigating an issue and ran across some suspicious code involving comparison of Date instances using comparison operators. e.g. def stamp = ... //Date def offset = ... //Integer ...