“/产品/观看”
对于上面的字符串我只是试图匹配反斜杠和它们之间的字符。所以在这种情况下我只想匹配/ products /
使用RegExp执行此操作的基本方法是什么,或者我可以使用Jquery
答案 0 :(得分:0)
var str = "/products/watch";
var matches = str.match(/\/(.*?)\//);
if (matches) {
// matches[0] is the full match including slashes "/products/"
// matches[1] is the chars between the slashes "products"
}