作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
PowerShell 脚本中所需的实际行是:
$tsd = [datetime]::ParseExact($TSDiff,'yyyyMMddhhmmsstt',$null)
$TSDiff
使用的变量的时间表示为,不含 AM/PM:
20171023212800
[datetime]::ParseExact("20171023092800",'yyyyMMddhhmmss',$null)
[datetime]::ParseExact("20171023212800",'yyyyMMddhhmmss',$null)
$TSDiff
在这篇文章的开头列出。
20171023212800
至
20171023092800PM
?
最佳答案
[...]
h
,%h
- The hour in a 12-hour clock. Single-digit hours will not have a leading zero. Specify%h
if the format pattern is not combined with other format patterns.hh
- The hour in a 12-hour clock. Single-digit hours will have a leading zero.H
,%H
- The hour in a 24-hour clock. Single-digit hours will not have a leading zero. Specify%H
if the format pattern is not combined with other format patterns.HH
- The hour in a 24-hour clock. Single-digit hours will have a leading zero.[...]
hh
将日期时间字符串转换为 12 小时格式的字符串时在格式说明符中,它将转换为带有
HH
的 24 小时字符串。在它喜欢:
[datetime]::ParseExact("20171023212800",'yyyyMMddHHmmss',$null)
关于powershell - 如何将 PowerShell 日期时间字符串从 24 小时格式转换为 12 小时格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46901156/
我是一名优秀的程序员,十分优秀!