How to convert string value into integer and multiply the converted value to integer so that I can get the result as 300.00. See example below -
int value = 5;
String str = "60.00 Cur";
If I code like these then I am getting error -
Float f = new Float(app.price.get(position));
double d = f.doubleValue();
int i = (int)d;