sprintf 中不显示整数的小数点

发布于 2025-01-14 15:52:22 字数 250 浏览 1 评论 0原文

我需要将一些数值转换为字符。我想显示相关的尾随零,如果数字是整数,则不显示小数位。例如,在下面的代码中,我需要输出为 "11" "0.30" "0.00050" "3.1" "4.6"。如何让 11 显示为“11”而不是“11.”?

sprintf('%#.2g', c(11, 0.301, 0.000502, 3.12, 4.56))

I need to convert some numeric values to characters. I want to show trailing zeros if relevant, and no decimal place if the number is an integer. For example, in the code below, I need my output to be "11" "0.30" "0.00050" "3.1" "4.6". How do I get the 11 to display as "11" not "11."?

sprintf('%#.2g', c(11, 0.301, 0.000502, 3.12, 4.56))

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

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

发布评论

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

评论(1

妄想挽回 2025-01-21 15:52:22

您可以删除尾随的 .像这样:

sprintf('%#.2g', c(11, 0.301, 0.000502, 3.12, 4.56)) |> stringr::str_remove("[.]$")
#> [1] "11"      "0.30"    "0.00050" "3.1"     "4.6"   

You can remove the trailing . like this:

sprintf('%#.2g', c(11, 0.301, 0.000502, 3.12, 4.56)) |> stringr::str_remove("[.]
quot;)
#> [1] "11"      "0.30"    "0.00050" "3.1"     "4.6"   
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文