查找字符串中的所有链接和电子邮件地址
将字符串中的所有链接和电子邮件地址与列表数组相匹配的最简单方法是什么?我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您已经有一个可用的正则表达式,则可以使用
Regex
类,如下所示:Assuming that you already have a working regular expression, you can use the
Regex
class, like this:这应该适用于链接:
来源
这应该适用于电子邮件地址:
来源
This should work for links:
Source
This should work for email addresses:
Source