gpt4 book ai didi

c# - 格式化字符串 - 货币值

转载 作者:行者123 更新时间:2023-11-30 19:29:59 25 4
gpt4 key购买 nike

我正在尝试将我的 double 格式化为美元货币格式,但我不希望尾随 00 如果值是整数。

我试过了

String.Format("{0:#,0.#0}", cost);

String.Format("{0:#,0.##}", cost);

前者让我在整数上尾随 00,而后者会在我想要 55.60 的地方给我 55.6。如何格式化我的值以满足这两种需求?

最佳答案

尝试这样的事情:

var output = string.Format(((Math.Round(num) == num) ? "{0:0}" : "{0:0.00}"), num);

关于c# - 格式化字符串 - 货币值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10540856/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com