在 Objective C 中将双精度数转换为字符串时删除多余的零

发布于 2024-09-08 14:22:15 字数 274 浏览 6 评论 0原文

因此,当我使用如下内容将双精度数转换为字符串时:

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 技术交流群。

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

发布评论

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

评论(1

逆夏时光 2024-09-15 14:22:15

尝试查看 NSNumberNSNumberFormatterusesSignificantDigits 属性。这可能就是您正在寻找的。

Try to look at NSNumber and NSNumberFormatter with it's usesSignificantDigits property. It is probably what you are looking for.

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