标签: powershell
如何在PowerShell中检查字符串是否包含正斜杠"/"?
"/"
以下内容:
$sample = "abc/defg/hij" $sample -Contains "/" $test = $sample -Replace "/", "__" $test
给出这个输出:
False abc__defg__hij
这对我没有意义。
答案 0 :(得分:4)
" - 包含"用于检查数组等项目。你想要
$sample -match "/"
背景:about_comparison_operators