How can I convert a number (double) to string, with custom decimal point and thousand separator chars?
I\'ve seen QLocale, but I don\'t want to choose the localization c
The easiest way is to use arg of QString.
QString str = QString("%L1").arg(yourDouble);