Qt Code:
  1. double dValue = 0.00200;
  2. QString strValue = QString::number(dValue, 'e', 1);
To copy to clipboard, switch view to plain text mode 

The strValue is getting as 2.0e-03

I don't want the preceding zeros in the exponent part. How can i do that ?