gpt4 book ai didi

powershell - 将日期转换为正确格式

转载 作者:行者123 更新时间:2023-12-02 23:07:39 26 4
gpt4 key购买 nike

我的CSV文件的日期格式不正确19-08-22:01:00(yy-MM-dd:HH:mm)

当我在excel中打开它时,它没有以日期格式显示。因此,我想使用powershell转换此值。

我尝试使用以下命令更改它。但是没用

$d = '19-08-22:01:00'
get-date $d

有人可以帮我将日期转换为excel可以识别为日期的正确格式。

最佳答案

我会使用 DateTime.ParseExact() :

$OldDate = '19-08-22:01:00'

# We need a provider so we pick the invariant one.
$Provider = [CultureInfo]::InvariantCulture

$OldDateFormat = 'yy-MM-dd:HH:mm'
# This format works well with Excel, assuming you use . and not , as a radix
$NewDateFormat = 'yyyy-MM-dd HH:mm:ss.fff'

$NewDate = [DateTime]::ParseExact($OldDate, $OldDateFormat, $Provider)
$NewDate.ToString($NewDateFormat)

关于powershell - 将日期转换为正确格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57614264/

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