一聚教程网:一个值得你收藏的教程网站

热门教程

asp.net C#正则匹配、分组和替换

时间:2022-06-25 08:32:28 编辑:袖梨 来源:一聚教程网

asp教程.net c#正则匹配、分组和替换
有个项目引用webservice的,因为同时发在了几台服务器上,为了方便切换,我就要能动态去更改它的ip(只是ip不同,不是webservice不同),所以我只要替换其中的服务器地址部分就可以了

2,演示从查询字符串里面提取想要的资料,以便把这些资料恢复到网页上,类似asp.net教程的viewstate功能

private string testrex(match m)
{
    //组0,就是所有匹配,然后依次为各个括号内的
    return m.groups教程[1] + "/88.88.88.88:1000" + m.groups[3];
}

protected void regextest()
{
    //测试正则替换
    string s = "http://221.221.221.221:8180/ws/services/n_ophospitaldoctorservice?wsdl";

    //替换ip地址加端口号为88.88.88.88:1000
    regex rx = new regex(@"(https?:/)(/[^/]+)(/.*)");

    matchevaluator me = new matchevaluator(testrex);
    //s = rx.replace(s, me);//方法1,委托的方式
    s = rx.replace(s, "$1/88.88.88.88:1000$3"); //方法2,替换字符串的方式
    //不把88.88.88.88:1000定义成一个变量,是为了方便演示为什么我把http://拆成了(http:/)和(/221.232.137...),
    //比如上面的,假如我拆成(https?://)的话,就要写成rx.replace(s,"$188.88.88.88:100$3"),显然,$1变成$88了,
    //这是任何用$来表示组号的情况下需要注意的
    //相反,上面的matchevaluator的用法就不存在这个问题了,因为用的是group,而不是$
    response.write(s);
    response.write("
");

    //获取查询字符串里面的日期
    string depselectedsql = " 1=1  and reserve_date>=to_date('2010-10-10','yyyy-mm-dd') and reserve_date<=to_date('2010-11-10','yyyy-mm-dd')";

    regex r = new regex(@"reserve_date.=to_date.'(dddd-dd-dd)", regexoptions.ignorecase);
    matchcollection mc = r.matches(depselectedsql);
    if (mc.count < 2)
    {
        response.write("invalid query string!");
        return;
    }
    string sdate = mc[0].groups[1].value;
    string edate = mc[1].groups[1].value;

    response.write(sdate + "
" + edate);
}

热门栏目