手机号归属地查询接口

     string phoneNum = "手机号";
        try
        {
            //web客户端
            WebClient webclient = new WebClient();
            //下载数据
            string str_ = webclient.DownloadString("http://www.ip138.com:8080/search.asp?mobile=" + phoneNum + "&action=mobile");
            //正则
            string str_regex = "><!-- <td></td> -->.*</TD>";
            //忽略大小写
            Regex regex = new Regex(str_regex, RegexOptions.IgnoreCase);
            //开始匹配
            MatchCollection matchCollection = regex.Matches(str_);
            string text = matchCollection[0].Value.Replace("><!-- <td></td> -->", "").Replace("</TD>", "");
            Response.Write(text);
        }
        catch (Exception ex) { }

引入

using System.Text.RegularExpressions;
using System.Net;

如果

matchCollection[1]

的时候输出类型

你可能感兴趣的:(手机号归属地查询接口)