powershell只使用split返回第n个元素

时间:2017-03-08 11:36:16

标签: powershell parsing

我怎样才能从这个简单的分割中返回第二个数组元素:

$test="This,Home"
$test -split ","

返回:

This
Home

我怎样才能只返回“Home”?

1 个答案:

答案 0 :(得分:5)

从列表中获取第二个元素(用1索引)

$test="This,Home" 
($test -split ",")[1]