码迷,mamicode.com
首页 > Web开发 > 详细

将一个符合URL格式的字符串变成链接

时间:2017-03-14 13:33:27      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:example   tps   url   ref   ret   blog   utils   loading   style   

function replaceURLWithHTMLLinks(text) {
      /*
        Example:

            >>> GateOne.Utils.replaceURLWithHTMLLinks(‘Downloading http://foo.bar.com/some/file.zip‘);
            "Downloading <a href="http://foo.bar.com/some/file.zip">http://foo.bar.com/some/file.zip</a>"
        */
        var exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
        return text.replace(exp,"<a href="+$1+">$1</a>");
    }

原:http://www.cnblogs.com/rubylouvre/p/3480013.html

将一个符合URL格式的字符串变成链接

标签:example   tps   url   ref   ret   blog   utils   loading   style   

原文地址:http://www.cnblogs.com/daysme/p/6547841.html

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