I've got the following snippet of code:
mystring = "1.43 something something"
def foo = mystring =~ /(\d*.\d*).*/
def number = foo[0][1]
number = (int)(number * 2.54)
The above code fails with exception: Cannot cast object '1.431.43' with class 'java.lang.String' to class 'int'
However, If I change the last line to: number = (int)(Double.parseDouble(number) * 1.54) then everything seems to work fine.
What is the best way to do this in groovy?
(int)(Double.parseDouble(number) does work but is a bit verbose and javaish.