码迷,mamicode.com
首页 > 其他好文 > 详细

路径的正则通配符-常用

时间:2016-11-08 01:49:06      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:regex   prot   常用   blog   .com   com   test   replace   this   

function regDir(str){
    var reg=str
    if(typeof reg=="string"){
        reg=reg.replace(/[\[\]\\\^\:\.\?\+]/g,function(m){
            return "\\"+m;
        })
        reg=reg.replace(/\*\*/g,function(m){
            return ".+";
        })
        reg=reg.replace(/\*/g,function(m){
            return "[\\w#\\.-]+";
        })
        reg=new RegExp("^"+reg+"$","gi")
    }
    return reg
}
String.prototype.Test=function(regStr){
    var reg=regDir(regStr)
    return reg.test(this)
}
String.prototype.Replace=function(regStr,fn){
    var reg=regDir(regStr)
    return this.replace(reg,fn)
}
//是否符合
var str="http://www.baidu.com/a.js?name"
console.log(str.Test("http://(**)(?*)"))

//路径替换
var b="http://www.baidu.com/a.js?sdf#21"
var reg=regDir("http://(**)?*")
console.log(b.replace(reg,"$1"))

  输出

true
www.baidu.com/a.js

路径的正则通配符-常用

标签:regex   prot   常用   blog   .com   com   test   replace   this   

原文地址:http://www.cnblogs.com/caoke/p/6041126.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!