可可 NSNumberFormatterCurrencyStyle 不带“$” 返回零

发布于 2024-07-27 23:29:15 字数 477 浏览 3 评论 0 原文

我设置了一个数字格式化程序来将货币字符串转换为十进制值。 问题是,如果文本字符串没有前导美元符号(“$”),它会被转换为 0,而不是有效的匹配数字。 所以:

"$3.50" converts to 3.50
 "3.50" converts to 0

这是转换器的代码:

// formatter to convert a value to and from a currency string
NSNumberFormatter *currencyFormatter = [[NSNumberFormatter alloc] init];
[currencyFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[currencyFormatter setGeneratesDecimalNumbers:YES];

我错过了什么吗?

I have a number formatter set up to convert currency strings to decimal values. The problem is that if the text string does not have a leading dollar sign ("$"), it gets converted to 0, rather than a valid matching number. So:

"$3.50" converts to 3.50
 "3.50" converts to 0

Here is the code for the converter:

// formatter to convert a value to and from a currency string
NSNumberFormatter *currencyFormatter = [[NSNumberFormatter alloc] init];
[currencyFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[currencyFormatter setGeneratesDecimalNumbers:YES];

Am I missing something?

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

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

发布评论

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

评论(2

一紙繁鸢 2024-08-03 23:29:15

我遇到了类似的问题。 我最终放弃了 NSNumberFormatter 进行解析,转而使用 RegexKit Lite,结果更好。

在此处获取副本:RegexKit Lite

然后转到此处http://regexlib.com/ 并找到最适合您的正则表达式。

I ran into a similar problem. I ended up scrapping the NSNumberFormatter for parsing and switched over to RegexKit Lite with much better results.

Grab a copy here: RegexKit Lite

Then go here http://regexlib.com/ and find the regex that works best for you.

深爱不及久伴 2024-08-03 23:29:15

It's converting "3.50" to 0 because it doesn't recognize "3.50" as a valid currency string as mentioned here: http://blog.clickablebliss.com/2006/10/05/the-challenges-of-international-money-in-cocoa/. If the default NSNumberFormatterCurrencyStyle isn't flexible enough for your needs, you may need to subclass it to handle these cases.

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