“PowerShell, wenn String enthält” Code-Antworten

PowerShell, wenn String enthält

$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 enthält

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

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

PowerShell, wenn String enthält

$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

Ähnliche Antworten wie “PowerShell, wenn String enthält”

Fragen ähnlich wie “PowerShell, wenn String enthält”

Weitere verwandte Antworten zu “PowerShell, wenn String enthält” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen