gpt4 book ai didi

arrays - 如果包含多个字符串,请 “this”否则 “this”

转载 作者:行者123 更新时间:2023-12-02 23:07:52 27 4
gpt4 key购买 nike

如果存在名称相同的SCOM组,则尝试制作一个请求更多信息(组ID)的脚本:

function myFunction {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$true)]
[string[]]$ObjectName
)

foreach ($o in $ObjectName) {
$p = Get-SCOMGroup -DisplayName "$o" | select DisplayName
<#
if ($p contains more than one string) {
"Request group Id"
} else {
"do this"
}
#>
}
}

需要有关注释块功能的帮助。

最佳答案

将值包装在数组子表达式@()中,并计算它具有多少个条目:

if(@($p).Count -gt 1){"Request group Id"}

关于arrays - 如果包含多个字符串,请 “this”否则 “this”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55396921/

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