gpt4 book ai didi

Powershell:组合变量

转载 作者:行者123 更新时间:2023-12-01 10:54:23 26 4
gpt4 key购买 nike

我是 powershell 的新手,我有这个问题:

我做了这个函数:

Function A_Function($a,$b){
$d = $a + $b
$d
}
A_Function "0","1"

问题是,这个函数给出了这个作为输出:

0
1

我希望它在一条线上:

01

我试过这样的事情:

$d = ($a + $b) #result: same a sabove
$d = (""+$a + $b+"") #result: 1 0, but i dont want that space inbetween
$d = "$a$b" #result: 1 0, but i dont want that space inbetween

谢谢你的帮助

最佳答案

您正在发送一个数组,它只会绑定(bind)到 $a。在 PowerShell 中,您使用空格分隔参数。试试这种方式:

A_Function "0" "1"

另请注意,您要添加两个字符串,结果将是“01”而不是 1,以防您想要添加数字。

关于Powershell:组合变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16209802/

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