Ive got a double variable dTotal =5.037717235E7
i formatted it using
deciFormat.form at(dTotal) and got the String value of dTotal=50377172 .35
now i have to pass this value as an argument to a function
convert(double num);
how can i convert the string value 50377172.35 to double?
Please help
i formatted it using
deciFormat.form at(dTotal) and got the String value of dTotal=50377172 .35
now i have to pass this value as an argument to a function
convert(double num);
how can i convert the string value 50377172.35 to double?
Please help
Comment