gpt4 book ai didi

powershell - 在PowerShell中将秒转换为hh:mm:ss,fff格式

转载 作者:行者123 更新时间:2023-12-04 01:21:30 24 4
gpt4 key购买 nike

我有一个字符串,以秒和毫秒为单位表示时间。我想将其转换为“hh:mm:ss,fff”格式的字符串。

我的解决方案仍然存在一个缺陷,即用少于十个小时的小时显示一个小数而不是两个:

PS> $secs = "7000.6789"
PS> $ts = [timespan]::fromseconds($s)
PS> $res = "$($ts.hours):$($ts.minutes):$($ts.seconds),$($ts.milliseconds)"
PS> $res
PS> 1:56:40,679

什么是实现此目标的正确方法?我敢肯定 -f和datetime有一种更优雅的方式。

最佳答案

在PowerShell 4.0中

$s = "7000.6789"
$ts = [timespan]::fromseconds($s)
("{0:hh\:mm\:ss\,fff}" -f $ts)

输出: 01:56:40,679
在PowerShell 2.0中
$s = "7000.6789"
$ts = [timespan]::fromseconds($s)
"{0:hh:mm:ss,fff}" -f ([datetime]$ts.Ticks)

输出: 01:56:40,679
再往回走...
$text = "01:56:40,679"
$textReformat = $text -replace ",","."
$seconds = ([TimeSpan]::Parse($textReformat)).TotalSeconds
$seconds

输出: 7000.679

关于powershell - 在PowerShell中将秒转换为hh:mm:ss,fff格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21842175/

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