如何在powershell中将datetime转换为string或double

时间:2013-04-12 09:04:09

标签: powershell

我想知道如何将datetime -uFormat%T(例如08:45:00)转换为double或8,75小时的字符串。

非常感谢你!

1 个答案:

答案 0 :(得分:0)

$date = Get-Date
'{0:HH},{1:N0} hours' -f $date,($date.Minute/60*100)