码迷,mamicode.com
首页 > Windows程序 > 详细

C#正则表达式获取网址的域名(IP)

时间:2015-04-21 09:32:38      阅读:885      评论:0      收藏:0      [点我收藏+]

标签:

代码如下:

string p = @"(http|https)://(?<domain>[^(:|/]*)";
Regex reg = new Regex(p, RegexOptions.IgnoreCase);
Match m = reg.Match(HostUrl);
Result=m.Groups["domain"].Value;

如http://localhost:8733/HVMsg/HVWcfService/获取的是:localhost

如http://guonei.news.baidu.com/n?cmd=1&class=shizheng获取的是:guonei.news.baidu.com

 

C#正则表达式获取网址的域名(IP)

标签:

原文地址:http://www.cnblogs.com/rabtor/p/4443374.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!