“PowerShell si la chaîne contient” Réponses codées

PowerShell si la chaîne contient

$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

La chaîne PowerShell contient

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

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

PowerShell si la chaîne contient

$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

Réponses similaires à “PowerShell si la chaîne contient”

Questions similaires à “PowerShell si la chaîne contient”

Plus de réponses similaires à “PowerShell si la chaîne contient” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code