用于匹配包含或不包含http的URL的正则表达式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用于匹配包含或不包含http的URL的正则表达式相关的知识,希望对你有一定的参考价值。
thanks to...http://gskinner.com/RegExr/
http://daringfireball.net/2010/07/improved_regex_for_matching_urls
(?:(?:http|https)://)?([-a-zA-Z0-9.]{2,256}.[a-z]{2,4})(?:/[[email protected]:%_+.~#?&//=]*)? RegExp: /(?:(?:http|https)://)?([-a-zA-Z0-9.]{2,256}.[a-z]{2,4})(?:/[[email protected]:%_+.~#?&//=]*)?/gi pattern: (?:(?:http|https)://)?([-a-zA-Z0-9.]{2,256}.[a-z]{2,4})(?:/[[email protected]:%_+.~#?&//=]*)? flags: gi 1 capturing groups: group 1: ([-a-zA-Z0-9.]{2,256}.[a-z]{2,4})
以上是关于用于匹配包含或不包含http的URL的正则表达式的主要内容,如果未能解决你的问题,请参考以下文章