Use Float.valueOf(String)
to do the conversion.
The difference between valueOf()
and parseFloat()
is only the return. Use the former if you want a Float
(object) and the latter if you want the float
number.
Use Float.valueOf(String)
to do the conversion.
The difference between valueOf()
and parseFloat()
is only the return. Use the former if you want a Float
(object) and the latter if you want the float
number.