正常表达式匹配

    String strPricePatten = @"[0-9]+\.?[0-9]*"; // 要进行匹配的正则表达式
            Regex rgxMatchPrice = new Regex(strPricePatten);
            String strMatchValue = rgxMatchPrice.Match(id).ToString(); // 匹配的结果
posted @ 2011-06-08 17:22  狼-志  阅读(251)  评论(0编辑  收藏  举报