I`ve got little problem. In my programm I want to send formatted data to a string variable. I want to do it with help of QTextStream, but I don`t know how.
The text stream looks like this: "1 2.5 2 -5 10". I`d like to have a string looks like this: "1.00e0 2.50e0 2.00e0 -5.00e0 1.00e1".
I`ve tried to use sprintf for it, but it works a little bit strange if you use it twice for different variables.