“Строка PowerShell содержит” Ответ

PowerShell, если строка содержит

$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 содержит

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

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

Ответы похожие на “Строка PowerShell содержит”

Вопросы похожие на “Строка PowerShell содержит”

Больше похожих ответов на “Строка PowerShell содержит” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования