根据我的要求,我必须限制\
或/
。
我的文字如下:
Need to get good command on \ regex
我需要在上面的文字中搜索\
或/
。如果可用则返回 true ,否则返回 false ,如test
方法。
是否有任何正则表达式在JavaScript字符串中标识这两个。
答案 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.");
}