“PowerShell se a 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

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

Respostas semelhantes a “PowerShell se a string contém”

Perguntas semelhantes a “PowerShell se a string contém”

Mais respostas relacionadas para “PowerShell se a string contém” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código