当前位置: 移动技术网 > IT编程>开发语言>c# > C#实现自动识别URL网址的方法

C#实现自动识别URL网址的方法

2019年07月18日  | 移动技术网IT编程  | 我要评论

本文实例讲述了c#实现自动识别url网址的方法。分享给大家供大家参考。具体实现方法如下:

using system;
using system.collections.generic;
using system.text;
using system.net;
using system.text.regularexpressions;
namespace consoleapplication3
{
 class program
 {
  static void main(string[] args)
  {
   string s = "例如:http://www.asd.com";
   regex re = new regex(@"(?<url>http(s)?://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?)");
   matchcollection mc = re.matches(s);
   foreach (match m in mc)
   {
    s=s.replace(m.result("${url}"), string.format("<a href='{0}'>{0}</a>", m.result("${url}")));
   }
   console.writeline(s);
  }
 }
}

希望本文所述对大家的c#程序设计有所帮助。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网