PowerShell检查数组中的字符串

时间:2019-07-02 11:50:55

标签: powershell vsphere powercli

我将PowerCLI的输出存储在一个变量中。我想检查字符串中是否存在该字符串,如果存在则继续进行for循环。

下面是我的脚本:

$stringtosearch = "test"
$getds = Get-Datastore | Select-Object -ExpandProperty Name
if ($dsname -contains $getds) {
    Write-Host "datastore exists"
    continue
}

上面的脚本没有进入循环,而是继续循环。

0 个答案:

没有答案