“PowerShell, jeśli ciąg zawiera” Kod odpowiedzi

PowerShell, jeśli ciąg zawiera

$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

Ciąg PowerShell zawiera

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

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

PowerShell, jeśli ciąg zawiera

$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

Odpowiedzi podobne do “PowerShell, jeśli ciąg zawiera”

Pytania podobne do “PowerShell, jeśli ciąg zawiera”

Więcej pokrewnych odpowiedzi na “PowerShell, jeśli ciąg zawiera” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu