在 Objective C 中将双精度数转换为字符串时删除多余的零
因此,当我使用如下内容将双精度数转换为字符串时:
double number = 1.1;
text = [[NSString alloc] initWithFormat:@"%f", number];
变量 text
最终打印如下内容:1.100000
。我意识到这是因为计算机存储值的方式所致,但是我需要一种简单的方法来删除这些额外的零,如果需要的话,如果数字结果为整数,还需要删除小数。
谢谢!
So when I convert a double to a string using something like this:
double number = 1.1;
text = [[NSString alloc] initWithFormat:@"%f", number];
The variable text
ends up printing something like this: 1.100000
. I realize that this is because of the way the computer stores the value however I need an easy way to remove those extra zeros and, if need be, the decimal as well if the number turns out to an integer.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试查看 NSNumber 和 NSNumberFormatter 其 usesSignificantDigits 属性。这可能就是您正在寻找的。
Try to look at NSNumber and NSNumberFormatter with it's usesSignificantDigits property. It is probably what you are looking for.