用jQuery替换正斜杠

时间:2015-06-02 19:56:18

标签: javascript regex string replace

这是我的字符串:

hello/page/2/bye

这就是我所拥有的(请注意“2”可以是任何数字,“页面”始终是“页面”:

hello/bye

如何使用jQuery对str.replace()做什么?

1 个答案:

答案 0 :(得分:2)

这样做(没有jQuery):

var str = 'hello/page/2/bye';
str = str.replace(/page\/\d+\//,'');

需要转义斜杠(因此它们变为\/),\d+是任意数字,一次或多次(因此它也匹配,例如page/12/

演示:http://jsfiddle.net/dd5aohbc/