URL C# 的正则表达式

发布于 2024-10-03 14:35:16 字数 378 浏览 3 评论 0原文

在我的 C# 程序中,我编写了一个 Google 搜索函数,它的工作原理是从每个页面获取源代码并通过正则表达式获取 URL。

我的实际正则表达式是:

(?:(?:(?:http)://)(?:w{3}\\.)?(?:[a-zA-Z0-9/;\\?&=:\\-_\\$\\+!\\*'\\(\\|\\\\~\\[\\]#%\\.])+)

目前效果很好,但我得到的 URL 例如 http://www.example.com/forums/arcade.php?efdf=332

我只想得到在本例中,URL 末尾不带 ?efdf=332

那么我应该如何更改正则表达式?

In my C# program I wrote a Google Search Function, which works by fetching the source from each page and getting the URLs via regex.

My actual Regex is:

(?:(?:(?:http)://)(?:w{3}\\.)?(?:[a-zA-Z0-9/;\\?&=:\\-_\\$\\+!\\*'\\(\\|\\\\~\\[\\]#%\\.])+)

This works good at the moment, but I get for example URLs like http://www.example.com/forums/arcade.php?efdf=332

I just want to get in this case the URL without the ?efdf=332 at the end.

So how should I change the regex?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

草莓酥 2024-10-10 14:35:16
http://(?:www\.)?[a-zA-Z0-9/;&=:_$+!*'()|~\[\]#%.\\-]+

与您的正则表达式相同(我删除了很多不必要的垃圾),但停止匹配 ? 之前的链接。

在 C# 中:

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

也就是说,我不确定这是匹配 URL 的好方法(httpsftpmailto 等怎么样? .?)

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

does the same as your regex (I've removed a lot of unnecessary cruft) but stops matching a link before a ?.

In C#:

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

That said, I'm not sure this is such a good way of matching URLs (what about https, ftp, mailto etc.?)

羁绊已千年 2024-10-10 14:35:16

您可以使用 Uri 类访问 URL 的各个部分,并从末尾删除查询字符串,或连接所需的部分。

You can use the Uri class to access various parts of the URL and either remove the query string from the end, or concatenate the parts you want.

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