gpt4 book ai didi

powershell - switch 语句中多个值的 PowerShell 语法是什么?

转载 作者:行者123 更新时间:2023-12-03 05:28:16 25 4
gpt4 key购买 nike

我基本上想这样做:

switch($someString.ToLower())
{
"y", "yes" { "You entered Yes." }
default { "You entered No." }
}

最佳答案

switch($someString.ToLower()) 
{
{($_ -eq "y") -or ($_ -eq "yes")} { "You entered Yes." }
default { "You entered No." }
}

关于powershell - switch 语句中多个值的 PowerShell 语法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3493731/

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