gpt4 book ai didi

powershell - 从CSV将字符串转换为Powershell中的DateTime

转载 作者:行者123 更新时间:2023-12-03 00:55:54 24 4
gpt4 key购买 nike

在处理需要转换为DateTime的字符串时,我遇到了最奇怪,最烦人的问题。
我正在从2个不同的CSV文件中执行完全相同的操作-它在第一个CSV文件中工作完美,在第二个CSV文件中始终返回错误。

$userDateOut = Get-Date $sourceLine.Date_OUT -Format "dd/MM/yyyy"
$userDateOut = ($userDateOut -as [datetime]).AddDays(+1)
$userDateOut = Get-Date $userDateOut -Format "dd/MM/yyyy"
例如,在第一个CSV中,Date_OUT只是 31/12/2021,而在第二个CSV中,它是 31/12/2021 0:00:00
因此,在创建 $userDateOut的3行之前,我做了
$userDateOut = $sourceLine.Date_OUT.SubString(0,10)
这使我最终得到与第一个CSV相同类型的变量
PS C:\Windows\system32> $userDateOut = $sourceLine.Date_Out.Substring(0,10)
PS C:\Windows\system32> $userDateOut
31/12/2021
PS C:\Windows\system32> $userDateOut.GetType()

IsPublic IsSerial Name BaseType
-------- -------- ---- --------
True True String System.Object
但是,有了这个变量,我得到了
PS C:\Windows\system32> $userDateOut = Get-Date $userDateOut -Format "dd/MM/yyyy"
Get-Date : Cannot bind parameter 'Date'. Cannot convert value "31/12/2021" to type "System.DateTime". Error: "String was not recognized as a valid DateTime."
At line:1 char:25
+ $userDateOut = Get-Date $userDateOut -Format "dd/MM/yyyy"
+ ~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Get-Date], ParameterBindingException
+ FullyQualifiedErrorId : CannotConvertArgumentNoMessage,Microsoft.PowerShell.Commands.GetDateCommand
而且我不知道为什么...有人可以帮忙吗?

最佳答案

-Format只是将[datetime]转换为[string]-不会以任何方式影响输入字符串的解析。
为此,您需要[datetime]::ParseExact():

$dateString = '31/12/2021'
# You can pass multiple accepted formats to ParseExact, this should cover both CSV files
$inputFormats = @(
'dd/MM/yyyy H:mm:ss'
'dd/MM/yyyy'
)

$parsedDatetime = [datetime]::ParseExact($dateString, $inputFormat, $null)
然后,可以根据需要使用 Get-Date -Format将其转换回预期的输出格式:

关于powershell - 从CSV将字符串转换为Powershell中的DateTime,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63850203/

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