URL C# 的正则表达式
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
与您的正则表达式相同(我删除了很多不必要的垃圾),但停止匹配
?
之前的链接。在 C# 中:
也就是说,我不确定这是匹配 URL 的好方法(
https
、ftp
、mailto
等怎么样? .?)does the same as your regex (I've removed a lot of unnecessary cruft) but stops matching a link before a
?
.In C#:
That said, I'm not sure this is such a good way of matching URLs (what about
https
,ftp
,mailto
etc.?)您可以使用
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.