正则表达式匹配正向和反斜杠

时间:2016-12-22 05:26:59

标签: javascript regex

根据我的要求,我必须限制\/

我的文字如下:

Need to get good command on \ regex

我需要在上面的文字中搜索\/。如果可用则返回 true ,否则返回 false ,如test方法。

是否有任何正则表达式在JavaScript字符串中标识这两个。

1 个答案:

答案 0 :(得分:1)

使用与[\/\\] \匹配的character class /

var s = "Need to get good command on \\ regex";
if (/[\/\\]/.test(s)) {
 console.log("Text contains a forward or backslash!");
} else {
  console.log("Valid text.");
}