0

「/製品/時計」

上記の文字列については、バックスラッシュとそれらの間の文字のみを一致させようとしています。したがって、この場合、/products/ のみに一致させたい

RegExpでこれを行う基本的な方法は何ですか、またはJqueryを使用できますか

4

1 に答える 1

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/

于 2012-09-12T02:12:35.067 に答える