string GetDomain(string url){ string[] tmpArray = url.Split('/'); return tmpArray[2];}原理:根据斜杠'/'吧网址分割成字符串数组,第一个应该是"http:",第二个为空,第三个即为域名