gpt4 book ai didi

powershell - 如何从对象转换为字符串

转载 作者:行者123 更新时间:2023-12-02 23:30:38 25 4
gpt4 key购买 nike

我是 PowerShell 的新手,所以这可能很容易回答。假设我像这样创建一个数组:

$array1 = "a", "b", "c"

然后我创建另一个数组:
$array2 = $array1|select-object{$_}

我想要做的是连接 $array2 中的所有值,所以我最终得到字符串“a b c”,但是在 $array2 上使用 -join ""只会产生一个空结果。有人可以向我解释我如何解决这个问题吗?

最佳答案

只需更换 $array2 = $array1|select-object{$_}$array2 = $array1 | select-object$array2 = $array1

$array1 = "a", "b", "c"

#expected output: a b c
$array1 -join " "

#here it is
$array2 = $array1 | select-object

#expected output: a b c
$array2 -join " "

#here it is
$array2 = $array1

#expected output: a b c
$array2 -join " "

关于powershell - 如何从对象转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11575447/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com