ParseExact - String未被识别为有效的DateTime

时间:2017-03-14 11:35:49

标签: powershell datetime date-parsing

我正在尝试将字符串变量转换为日期时间格式:

[DateTime]::ParseExact($tempdate, 'dd.MM.yyyy', [CultureInfo]::InvariantCulture).ToString('yyMMdd')

$tempdate包含格式为dd.MM.yyyy的日期,该日期是从Excel文件中获取的。

不幸的是我收到错误消息:

Exception calling "ParseExact" with "3" argument(s): "String was not recognized as a
valid DateTime."
At line:1 char:1
+ [DateTime]::ParseExact($tempdate, 'dd.MM.yyyy', [CultureInfo]::Invaria ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : FormatException

当我把'清洁日期'而不是变量时,它工作正常。

[DateTime]::ParseExact('13.03.2017', 'dd.MM.yyyy', [CultureInfo]::InvariantCulture).ToString('yyMMdd')

此变量有什么问题或如何以其他方式将其转换为日期时间?

1 个答案:

答案 0 :(得分:1)

  

当我提供清洁日期时,它工作正常。而不是变量。

这首先告诉我你的$tempdate出了问题,最重要的是它应该是一个字符串,但你可能会遇到前导空格或尾随空格的问题。考虑以下。

PS C:\Users\Bagel> [DateTime]::ParseExact(' 13.03.2017 ', 'dd.MM.yyyy',[CultureInfo]::InvariantCulture)
Exception calling "ParseExact" with "3" argument(s): "String was not recognized as a valid DateTime."
At line:1 char:1
+ [DateTime]::ParseExact(' 13.03.2017 ', 'dd.MM.yyyy',[CultureInfo]::In ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : FormatException

因此,正如我们在评论中发现的那样,这似乎是您的问题。一个简单的.trim()应该为你处理这个问题,假设你无法控制$tempdate的填充方式(如果你这样做,你应该首先解决问题)。

[DateTime]::ParseExact(' 13.03.2017 '.Trim(), 'dd.MM.yyyy',[CultureInfo]::InvariantCulture)