使用RegEx在网址中查找字符

时间:2012-09-12 01:57:18

标签: javascript jquery regex

“/产品/观看”

对于上面的字符串我只是试图匹配反斜杠和它们之间的字符。所以在这种情况下我只想匹配/ products /

使用RegExp执行此操作的基本方法是什么,或者我可以使用Jquery

1 个答案:

答案 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"
}

工作演示:http://jsfiddle.net/jfriend00/8AAAE/