格式化可变字符串中的浮点数
我有几个浮点数,它们都存储在可变字符串中。但是在显示它们时,尽管是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将它们放入浮点数中,然后使用 stringWithFormat(@"%f4.0", 吗?
Could you just put them into floats and then use a stringWithFormat(@"%f4.0", ?
使用
Use