正则表达式

前端之家收集整理的这篇文章主要介绍了正则表达式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

 

匹配 url

//表达式
/http://[\S]+/gi

//text
start http://www.mylog.com end

//result
http://www.mylog.com

加入https

//同时匹配http,https
/https?://[\S]+/gi

加入ftp

//能匹配http,https,ftp; ?:表示忽略小括号捕获
/(?:ht|f)tps?://[\S]+/gi

取得捕获内容

/((?:ht|f)tps?://([\S]+))/gi

//输出 $1\n $2
http://www.mylog.com
www.mylog.com

猜你在找的正则表达式相关文章