在Powershell中转发斜杠

时间:2016-06-09 23:10:17

标签: powershell

如何在PowerShell中检查字符串是否包含正斜杠"/"

以下内容:

  $sample = "abc/defg/hij"
  $sample -Contains "/"      
  $test = $sample -Replace "/", "__"
  $test

给出这个输出:

False
abc__defg__hij

这对我没有意义。

1 个答案:

答案 0 :(得分:4)

" - 包含"用于检查数组等项目。你想要

$sample -match "/"

背景:about_comparison_operators