当前位置:  开发笔记 > 编程语言 > 正文

Powershell加入

如何解决《Powershell加入》经验,为你挑选了2个好方法。

我试图使用这个将数组的多个元素连接成一个字符串;

$a = "h","e","l","l","o"
$b = [string]::join("", $a[0,1,2,3])

但是我在"方法调用"错误中得到了"丢失".连接文档仅提及连接数组的所有元素,而不是特定索引处的元素.可以这样做吗?

干杯

安迪



1> dance2die..:

用"$()"或"()"换行"$ a [0,1,2,3]"的内容

PS> [string]::join("", $($a[0,1,2,3]))
hell
PS> [string]::join("", ($a[0,1,2,3]))
hell

- 要么 -

你可以使用范围运算符".."

PS> [string]::join("", $a[0..3])
hell



2> Shay Levy..:
PS > & {$ofs=""; "$($a[0,1,2,3])"}  
hell

推荐阅读
mylvfamily
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有