首页 > 解决方案 > 在 Powershell 中将字符串从 CSV 转换为 DateTime

问题描述

在处理需要转换为 DateTime 的字符串时,我遇到了最奇怪和最烦人的问题。

我正在从 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

解决方案


-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需要将其转换回预期的输出格式:


推荐阅读