将整数数组转换为字符串

时间:2017-05-17 07:00:23

标签: arrays powershell

我找到this snippet来做一个字符串数组:

$c = "2,3,4,5,6,7,10..12".split(',') | % {iex $_}

如何将$c转换回"2,3,4,5,6,7,10,11,12"之类的字符串?我当然不需要将其缩写回"2..7,10..12"

1 个答案:

答案 0 :(得分:1)

您正在寻找-join

$c -join ','