在 Objective-c 中格式化负货币金额
我在格式化负数时遇到问题。我定义了以下格式化程序:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
难道是因为 fr_FR 使用
,
作为小数点分隔符,而不是.
?Could it be because fr_FR has the
,
as decimal separator, and not the.
?