http 的正则表达式模式匹配
我想从网页的 href 中提取 url...为此,我使用正则表达式模式作为 "(?(http:[/][/]|www.)([az]|[AZ]|[0-9]|[/.]|[~])*)"
从 html i 中提取 href使用了这个模式 @"href=\""(?[^\""#]?(?=[\""#]))(?(?#{2}[^#]?#{ 2})*)(?#[^""]+)?"""
但问题是...它不会从 href 中提取网址,而是提取像“www.seo-sem.com”这样的网址..并且在我只得到的结果..“www.seo”...在连字符之后它被截断...请你建议一个更好的正则表达式模式来从 href 中提取 url..将感谢你...
i want to extract url from href of a webpage...for that i m using the regex pattern as
"(?(http:[/][/]|www.)([a-z]|[A-Z]|[0-9]|[/.]|[~])*)"
to extract the href from html i used this pattern
@"href=\""(?[^\""#]?(?=[\""#]))(?(?#{2}[^#]?#{2})*)(?#[^""]+)?"""
but the problem is...it do not extract urls from the href but urls like "www.seo-sem.com"..and in the result i only get.."www.seo"...after the hyphen it gets truncated...plz could u sugest a better regex pattern to extract url from href..will be thankful to u...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 HTML Agility Pack 解析您的 HTML。您可以使用 Xpath 查询它,因为它将 HTML 解析为类似
XmlDocument
的对象。请参阅此了解不这样做的原因使用正则表达式解析 HTML。
Use the HTML Agility Pack to parse your HTML. You can query it using Xpath, as it parses the HTML into a
XmlDocument
like object.See this for reasons not to parse HTML with regular expressions.