js 正则表达式,分组,非捕获或 环视的使用

定位一个字符串中,匹配与定位重复字符中的最后一个字符:

  例子:

    



var str="http://www.baidu.com/xxxx//aaa/bbb/img.ipg";
var patt1 = /\/\/(?!.*\/)/ig;
document.write(str.replace(patt1,"/"));

 

 

另一种方式:

document.write("
"); var str2="http://www.baidu.com//xxxx//img.ipg"; var patt2 =new RegExp('/(?!.*\/\/)/','ig'); document.write(str2.replace(patt2,"/"));

 

转载于:https://www.cnblogs.com/cn-coder/p/7101410.html

你可能感兴趣的:(js 正则表达式,分组,非捕获或 环视的使用)