gpt4 book ai didi

powershell - 将整数 x.xxxxx 格式化为 xx.xxx

转载 作者:bug小助手 更新时间:2023-10-28 10:49:28 25 4
gpt4 key购买 nike

我有一个号码,$int,

$int = 9.5587452369

我希望这个数字采用 xx.xxx 格式我试过了:

$int = "{0:N3}" -f ($int)
$int = "{0:D2}" -f ($int)

$int = "{0:D2}" -f ("{0:N3}" -f ($int))

但它不起作用。有什么想法吗?

最佳答案

使用指定格式的toString()方法。

PS > $int = 9.5587452369
PS > $int.ToString("00.000")
09,559

或者

PS > "{0:00.000}" -f $int
09,559

更多信息请访问 MSDN - Custom Numeric Format Strings

关于powershell - 将整数 x.xxxxx 格式化为 xx.xxx,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14802963/

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