标签: powershell parsing
我怎样才能从这个简单的分割中返回第二个数组元素:
$test="This,Home" $test -split ","
返回:
This Home
我怎样才能只返回“Home”?
答案 0 :(得分:5)
从列表中获取第二个元素(用1索引)
$test="This,Home" ($test -split ",")[1]