好的,我正在尝试执行以下操作:
简化示例:
$Var = "MyProduct*MyProduct"
$List += "MyProduct 11 MyProduct"
$List += "YourProduct 11 YourProduct"
$List += "SomethingElse"
$NewVar = $List | Where {$_ -like "$Var"}
我希望扩展 $Var 中的“*”,然后检查它是否像“$_”这样它会识别出 var 中有一个通配符并根据它获得结果..有没有办法做到这一点?