在Array Powershell中的特定位置创建对象

时间:2013-11-13 15:43:42

标签: arrays object powershell

我想知道你是否可以帮我解决这个问题。我在powershell中有一个包含这个对象的数组:

$array = @(1,2,3,4,5)

所以$array给了我这个:

1
2
3
4
5

现在我想在位置$array[3],上添加数字6,以便输出为:

1
2
3
6
4
5

1 个答案:

答案 0 :(得分:0)

有很多方法可以做到这一点。实施例

PS > $i = 1..5

PS > $i
#ouput
1
2
3
4
5

PS > function insertInto ($array, $index, $value) {
    @($array[0..($index-1)],$value,$array[$index..($array.length-1)])
}

PS > $i = insertInto $i 3 6

PS > $i
#output
1
2
3
6
4
5

警告,上面的方法对单值数组不是很好。