格式化 iPhone 文本字段中输入的数字

发布于 2024-09-05 12:43:00 字数 132 浏览 4 评论 0原文

我有一个文本字段,用户在其中输入一个数字,该数字在数千范围内。

我希望在用户输入数字时对文本字段进行格式化,例如: 200000应该变成200,000。

我该怎么做呢?

非常感谢,

S

I have a text field where the user enters a number, which is in the range of thousands.

I want the text field to be formatted as the user enters the number, example :
200000 should become 200,000.

how do i go about doing this??

Many Thanks,

S

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

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

发布评论

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

评论(1

戒ㄋ 2024-09-12 12:43:00

我也有同样的问题!

操作方法如下。您想要使用 NSNumberFormatter 并将其设置为使用 Decimal 样式:

NSNumberFormatter *formatter = [[[NSNumberFormatter alloc] init] autorelease];
[formatter setNumberStyle: NSNumberFormatterDecimalStyle];  
textField.text = [formatter stringFromNumber: [formatter numberFromString:textField.text]];

将 textField 替换为 UITextField 变量的名称。

I had the same question!

Here's how you do it. You want to use NSNumberFormatter and set it to use Decimal style:

NSNumberFormatter *formatter = [[[NSNumberFormatter alloc] init] autorelease];
[formatter setNumberStyle: NSNumberFormatterDecimalStyle];  
textField.text = [formatter stringFromNumber: [formatter numberFromString:textField.text]];

Replace textField with the name of your UITextField variable.

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