PowerShell 技能连载 - 转换区域性特定的信息

假设您以文本的形式收到了数字或日期等数据。当信息转为文本的时候,您会遇到区域性特定的格式:不同区域的小数点和日期时间可能会不同。

以下是一个如何解析数据的简单例子,假设您知道它的来源区域信息:

1
2
3
4
5
6
# number in German format
$info = '1,2'

# convert to real value
$culture = New-Object -TypeName CultureInfo("de")
$number = [Double]::Parse($info,$culture)

每一个目标类型有一个 Parse() 方法,所以如果您收到一个日期和/或时间信息,您可以将它如此简单地转换它。这个例子输入的是以法国标准格式化的日期和时间,并返回一个真正的 DateTime 对象:

1
2
3
4
5
6
7
# date and time in French format:
$info = '01/11/2017 16:28:45'

# convert to real value
$culture = New-Object -TypeName CultureInfo("fr")
$date = [DateTime]::Parse($info,$culture)
$date

PowerShell 技能连载 - 转换区域性特定的信息

http://blog.vichamp.com/2017/12/08/converting-culture-specific-information/

作者

吴波

发布于

2017-12-08

更新于

2022-07-06

许可协议

评论