Getting true, which i-6ren">
gpt4 book ai didi

powershell - 如何在powershell中使用多个值进行比较

转载 作者:行者123 更新时间:2023-12-02 18:01:49 26 4
gpt4 key购买 nike

简单来说,我正在尝试 -

$animal = "cat", "dog", "rabbit"
$animal -contains "dog" # -----> Getting true, which is working!

但是,当我尝试检查多个值时,例如 -

$animal -contains "dog" -and "bat" # --> still getting a "True" response. 

如何使用 contains 运算符检查多个值?

最佳答案

bool 表达式的工作方式略有不同。你需要这个:

$animal -contains "dog" -and $animal -contains "bat"

您还可以将“dog”和“bat”放入它们自己的数组中,然后循环遍历该数组。

关于powershell - 如何在powershell中使用多个值进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74210811/

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