gpt4 book ai didi

string - Powershell 连接字符串和内联变量?

转载 作者:行者123 更新时间:2023-12-03 14:10:32 29 4
gpt4 key购买 nike

我想做以下事情:

New-WebVirtualDirectory -Site "Site1" -Name "XX_$args[0]" -physicalPath "c:\sites\XX_$args[0]"

其中“XX_”是静态字符串,$args[0] 是传递给脚本的第一个参数。现在我知道我可以通过创建两个变量然后将这些变量传递给 cmdlet (New-WebVirtualDirectory) 来“解决”这个问题,但是有什么方法可以在线连接静态字符串和变量 ($args[0])不加两个变量?

我尝试将它们包含在 ( ) 中(例如 -Name ("XX_"+ $args[0]) )但没有成功。

最佳答案

尝试:

"XX_$($args[0])" 

$(..) 在字符串中以正确的方式扩展数组变量的值或变量的属性。

关于string - Powershell 连接字符串和内联变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14876654/

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