Hi, you could
- specifiy a precision as the third parameter for QString::number
- you could use QString::arg() and play with fieldwidth and precision
- you could take your string, find the e or E of the scientific notation, and remove all zeroes in front of it (probably the ugliest method...)
- probably many more...

Ginsengelf