ICU 货币区域设置 获取面额

发布于 2024-10-16 09:25:38 字数 331 浏览 1 评论 0原文

有没有办法探测 ICU 货币区域设置的最小面额?例如,美国的价格为 0.01 美元,韩国 (ko_KR) 的价格为 ₩1。我想在 DecimalFormat 上调用 getRoundingIncrement() code> object 可能会将其提供给我,但对于 en_US 和 ko_KR 都返回 0。

Is there a way to probe an ICU Currency Locale for it's minimal denomination? For example US's would be $0.01, Korea (ko_KR) would be ₩1. I thought calling getRoundingIncrement() on the DecimalFormat object may give it to me but that returns 0 for both en_US and ko_KR.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏雨凉 2024-10-23 09:25:38

您需要查看: getMinimumFractionDigits() 函数:

#include <unicode/numfmt.h>
#include <unicode/ustream.h>
#include <unicode/ustring.h>
#include <iostream>

int main()
{
        UErrorCode e=U_ZERO_ERROR;
        icu::NumberFormat *fmt = icu::NumberFormat::createCurrencyInstance(e);
        std::cout << fmt->getMinimumFractionDigits() << std::endl;
        icu::UnicodeString str;
        std::cout << fmt->format(12345.5678,str) << std::endl;

        delete fmt;
}

这是不同语言环境的程序输出,似乎这就是您所需要的

$ ./a.out
2
$12,345.57
$ LC_ALL=en_US.UTF-8 ./a.out
2
$12,345.57
$ LC_ALL=ja_JP.UTF-8 ./a.out
0
¥12,346
$ LC_ALL=ko_KR.UTF-8 ./a.out
0
₩12,346
$ LC_ALL=ru_RU.UTF-8 ./a.out
2
12 345,57 руб.

You need to take a look on: getMinimumFractionDigits() function:

#include <unicode/numfmt.h>
#include <unicode/ustream.h>
#include <unicode/ustring.h>
#include <iostream>

int main()
{
        UErrorCode e=U_ZERO_ERROR;
        icu::NumberFormat *fmt = icu::NumberFormat::createCurrencyInstance(e);
        std::cout << fmt->getMinimumFractionDigits() << std::endl;
        icu::UnicodeString str;
        std::cout << fmt->format(12345.5678,str) << std::endl;

        delete fmt;
}

This is the output of the program for different locales, seems it is what you need

$ ./a.out
2
$12,345.57
$ LC_ALL=en_US.UTF-8 ./a.out
2
$12,345.57
$ LC_ALL=ja_JP.UTF-8 ./a.out
0
¥12,346
$ LC_ALL=ko_KR.UTF-8 ./a.out
0
₩12,346
$ LC_ALL=ru_RU.UTF-8 ./a.out
2
12 345,57 руб.
べ繥欢鉨o。 2024-10-23 09:25:38

感谢 Steve Loomis 和 Artyom 帮助我找到了解决方案。

double roundingIncrement = formatter->getRoundingIncrement();
int32_t minFractionDigits = formatter->getMinimumFractionDigits();
double minDenom;
if (roundingIncrement == 0.0 && minFractionDigits == 0.0)
{
 minDenom = 1.0;
}
else if (roundingIncrement != 0.0 && minFractionDigits > 0.0)
{
 minDenom = roundingIncrement;
}
else
{
 minDenom = 0.01;
}

Thank you to Steve Loomis and Artyom for helping me piece together a solution.

double roundingIncrement = formatter->getRoundingIncrement();
int32_t minFractionDigits = formatter->getMinimumFractionDigits();
double minDenom;
if (roundingIncrement == 0.0 && minFractionDigits == 0.0)
{
 minDenom = 1.0;
}
else if (roundingIncrement != 0.0 && minFractionDigits > 0.0)
{
 minDenom = roundingIncrement;
}
else
{
 minDenom = 0.01;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文