Javascript中的高级正则表达式

时间:2013-08-19 20:03:07

标签: javascript regex url hashtag zepto

我正在开发多个高级表达式,可以检测4件事:Urls,twitter用户名,主题标签和十六进制颜色。如果您使用相同的东西,例如4个不同的主题标签,网址或颜色,它的效果很好。但是当你放置时,例如一个标签和一个不同的东西,比如一个url,hashtag就会消失。 在这里你可以看到RegularExp:

var RegularExp = {
    twitter: /(^|[,\s])@(\w{1,15})/g,
    color: /(^|[,\s])#((?:[a-fA-F0-9]){3}|(?:[a-fA-F0-9]){6})/g,
    hashtag: /(^|[,\s])#(\w{1,15})/g,
    url: /(^|\s)(((http(s)?:\/\/|ftp(s)?:\/\/)?([a-zA-Z0-9_-]+\.)?(?:[a-zA-Z0-9]+)(?:\.[a-z]{2,4}){1,2})(\/.*)*)/g
},
Replacer = {
    twitter: "$1<a rel='nofollow' target='_blank' href='http://twitter.com/$2'>@$2</a>",
    color: "$1<span class='hex-color' style='background-color:#$2 !important'>#$2</span>",
    hashtag: "$1<a rel='nofollow' target='_blank' href='http://twitter.com/search?q=%23$2&src=hash'>#$2</a>",
    url: "$1<a rel='nofollow' target='_blank' href='$2'>$2</a>"
};

你可以在这里试试:http://jsfiddle.net/esa_u7/KrTMW/ 在第一个文本区写:“#fff,#000,#00f”没有斜杠(你可以看到它工作),然后添加一个像@example这样的推特用户名。 为什么所有标签都会消失。

2 个答案:

答案 0 :(得分:0)

哈希标记可用作正则表达式分隔符,需要进行转义\#

答案 1 :(得分:0)

我发现了错误。我正在做一个循环:

$.each(RegularExp, function (name, value) {
    if (RegularExp[name].test(self.nodeValue)) {
        $(self).replaceWith(self.nodeValue.replace(RegularExp[name], Replacer[name]));
    }
    $output.find("span").each(function () {
        if ($(this).hasClass("hex-color")) {
            $(this).contrastColor("color", "background-color");
        }
    });
});

正确的做法是:

var indice = 1,
    texto = this.nodeValue;
$.each(RegularExp, function (name, value) {
    if (RegularExp[name].test(self.nodeValue)) {
        texto = texto.replace(RegularExp[name], Replacer[name])
    }
    if(indice == Object.keys(RegularExp).length){
        $(self).replaceWith(texto);
    }
    $output.find("span").each(function () {
        if ($(this).hasClass("hex-color")) {
            $(this).contrastColor("color", "background-color");
        }
    });
    indice++;
});