查找字符串中的所有链接和电子邮件地址

发布于 2024-09-04 18:09:19 字数 94 浏览 7 评论 0原文

将字符串中的所有链接和电子邮件地址与列表数组相匹配的最简单方法是什么?我在 PHP 中使用 preg_match 但在 C# 中看起来会有很大不同。

What could be the easiest way to match all links and e-mail addresses in a string to a list array? I was using preg_match in PHP but in C# it looks like it will be way different.

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

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

发布评论

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

评论(2

平生欢 2024-09-11 18:09:20

假设您已经有一个可用的正则表达式,则可以使用 Regex,如下所示:

static readonly Regex linkFinder = new Regex(@"https?://[a-z0-9.]+/\S+|\s+@\S+\.\S+", RegexOptions.IgnoreCase);

foreach(Match match in linkFinder.Matches(someString)) {
    //Do things...
    string url = match.Value;
    int position = match.Index;
}

Assuming that you already have a working regular expression, you can use the Regex class, like this:

static readonly Regex linkFinder = new Regex(@"https?://[a-z0-9.]+/\S+|\s+@\S+\.\S+", RegexOptions.IgnoreCase);

foreach(Match match in linkFinder.Matches(someString)) {
    //Do things...
    string url = match.Value;
    int position = match.Index;
}
墨落成白 2024-09-11 18:09:20

这应该适用于链接:

https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?

来源

这应该适用于电子邮件地址:

[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}

来源

This should work for links:

https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?

Source

This should work for email addresses:

[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}

Source

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