在 Objective-c 中格式化负货币金额

发布于 2024-11-04 20:39:54 字数 340 浏览 0 评论 0原文

我在格式化负数时遇到问题。我定义了以下格式化程序:

NSNumberFormatter *nf = [[NSNumberFormatter alloc] init];
[nf setNumberStyle:NSNumberFormatterCurrencyStyle];
[nf setNegativeFormat:@"-¤#,##0.00"];

在使用 en_US 语言环境的环境中,解析字符串 @"-$244.32" 返回正确的 NSNumber 对象。但是,使用 fr_FR 语言环境解析字符串 @"-€244.32" 将返回 nil。

你有什么想法吗?

谢谢

I have trouble formatting negative amounts. I have defined the following formatter :

NSNumberFormatter *nf = [[NSNumberFormatter alloc] init];
[nf setNumberStyle:NSNumberFormatterCurrencyStyle];
[nf setNegativeFormat:@"-¤#,##0.00"];

In an environment using an en_US locale, parsing the string @"-$244.32" returns a correct NSNumber object. However, parsing the string @"-€244.32" with a fr_FR locale returns nil.

Do you have any ideas ?

Thanks

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

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

发布评论

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

评论(1

赤濁 2024-11-11 20:39:54

难道是因为 fr_FR 使用 , 作为小数点分隔符,而不是 .

Could it be because fr_FR has the , as decimal separator, and not the . ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文