I have a String that represents an integer value and would like to convert it to an int. Is there a groovy equivalent of Java's Integer.parseInt(String)?
|
|
|||||||||
|
|
This is the one true path to Grooviness:
Aside: there really is no such thing as an
It prints:
GrailsIf you're converting a request parameter in a Grails controller, there's an even better way
One of the nice features of this technique is that it's safe, i.e. if the parameter cannot be converted to an |
|||||||
|
|
Several ways to do it, this one's my favorite:
|
|||||
|
|
As an addendum to Don's answer from yesterday, not only does groovy add a ".toInteger()" method to strings, it also adds toBigDecimal, toBigInteger, toBoolean, toCharacter, toDouble(), toFloat, toList, and toLong. In the same vein, groovy also adds "is*" eqivalents to all of those that return true if the string in question can be parsed into the format in question. The relevant GDK page is here. |
|||||
|
|
Well, Groovy accepts the Java form just fine. If you are asking if there is a Groovier way, there is a way to go to Both are shown here:
|
|||||
|
|
I'm not sure if it was introduced in recent versions of groovy (initial answer is fairly old), but now you can use:
or
I recommend using floats or even doubles instead of integers in the case if the provided string is unreliable. |
|||
|