Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
QLocale::toCurrencyString() does not return proper currency string
-
The following code:
@QLocale(QLocale::English, QLocale::AnyScript, QLocale::UnitedStates).toCurrencyString(187234.00);@
returns $187234.00 but the proper currency format is $187,234.00
How to force group separators to be included in the output of this function?
-
fixed by https://codereview.qt-project.org/40439 (Qt5 post-beta2)
-
wow. thank you!