Maybe I misunderstand the documentation, but I can’t avoid exponential notation with the way it’s in the doc?
String::String(double doubleValue, int numberOfDecimalPlaces )
using it this way: String(number,18)
will still give me strings like this: 4.1889975317955076e-06
although based on the documentation If I use ‘numberOfDecimalPlaces > 0’ then I won’t get exponential notation… And that’s exactly what I try to do.
Any thoughts on it would be much appreciated!