在 Powershell 中将字符串从 CSV 转换为日期时间

问题描述 投票:0回答:1

我在处理这里的字符串时遇到了最奇怪和最烦人的问题,我需要将其转换为日期时间。

我正在对 2 个不同的 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

所以在创建 3 行之前

$userDateOut
,我做

$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

我不知道为什么......有人可以帮忙吗?

powershell
1个回答
4
投票

-Format
只是将
[datetime]
转换为
[string]
- 它不会影响以 any 方式解析输入字符串。

为此,您需要

[datetime]::ParseExact()

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

$parsedDatetime = [datetime]::ParseExact($dateString, $inputFormats, $null, [System.Globalization.DateTimeStyles]::None)

然后,如果需要,您可以使用

Get-Date -Format
将其转换回预期的输出格式:

Get-Date $parsedDatetime -Format dd/MM/yyyy
© www.soinside.com 2019 - 2024. All rights reserved.