String valueOf(1.0E-4) is not 0.0001
807603Nov 21 2007 — edited Nov 21 2007When having the number a = 1.0E-4, I would like to represent it as:
0.0001.
How can I convert this number so that String valueOf(a) understands it as:
0.0001?
Thanks in advance!