http 的正则表达式模式匹配

发布于 2024-08-31 20:04:50 字数 343 浏览 4 评论 0原文

我想从网页的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少跟Wǒ拽 2024-09-07 20:04:50

使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文