“PowerShell String contém” Respostas de código

PowerShell se a string contém

$strVal ='Hello world'
if($strVal -like '*World*') {
      Write-Host 'Your string contains the word world'
} else {
      Write-Host 'Your string does not contains the word world'
}
CyberSimon

PowerShell String contém

PS C:\> "abc", "def" -Contains "def"
True

PS C:\> "Windows", "PowerShell" -Contains "Shell"
False  #Not an exact match
Crazy Cod

Respostas semelhantes a “PowerShell String contém”

Perguntas semelhantes a “PowerShell String contém”

Mais respostas relacionadas para “PowerShell String contém” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código