可以找到以“ / pathA / pathB /”开头的匹配字符串。 例如:console.log(matches)用于以下字符串
"/pathA/pathB/c/d" ,"/pathA/pathB/e/f"
但没有console.log输入以下字符串
'C/pathA/pathB" or "D/E/pathB/pathA"
我尝试了以下
var reg = new RegExp $^(/pathA/pathB)
if(string.match(reg))
{ console.log("it matches"). }
但不能