powershell if string contains
$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'
}
powershell if string contains
$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'
}
powershell string contains
PS C:\> "abc", "def" -Contains "def"
True
PS C:\> "Windows", "PowerShell" -Contains "Shell"
False #Not an exact match
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us