Regular expression for parsing links from a webpage?

前端 未结 9 714
南旧
南旧 2020-11-27 20:02

I\'m looking for a .NET regular expression extract all the URLs from a webpage but haven\'t found one to be comprehensive enough to cover all the different ways you can spec

9条回答
  •  眼角桃花
    2020-11-27 20:43

    according to http://tools.ietf.org/html/rfc3986

    extracting url from ANY text (not only HTML)

    (http\\://[:/?#\\[\\]@!%$&'()*+,;=a-zA-Z0-9._\\-~]+)
    

提交回复
热议问题