格式化可变字符串中的浮点数

发布于 2024-10-18 20:25:41 字数 97 浏览 3 评论 0原文

我有几个浮点数,它们都存储在可变字符串中。但是在显示它们时,尽管是 2011 年,但它显示的是 2011.00000,所以我希望它对其进行格式化。 任何建议。

谢谢

I have a couple of floats and they all are stored in a mutable string. But while displaying them it's showing 2011.00000 inspite of 2011 so i want it to format it.
Any suggestions.

Thanks

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

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

发布评论

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

评论(3

合久必婚 2024-10-25 20:25:41
NSString* str = [NSString stringWithFormat:@"%.f", float_number];
NSString* str = [NSString stringWithFormat:@"%.f", float_number];
赢得她心 2024-10-25 20:25:41

您可以将它们放入浮点数中,然后使用 stringWithFormat(@"%f4.0", 吗?

Could you just put them into floats and then use a stringWithFormat(@"%f4.0", ?

倒数 2024-10-25 20:25:41

使用

NSString* sa = [NSString stringWithFormat: @"%0.0f", 22323.4342];

Use

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