码迷,mamicode.com
首页 > 其他好文 > 详细

正则 群组 Group

时间:2016-03-30 14:44:02      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:

  static void Main(string[] args)
        {
            string strUrl = "<a href=\"user.php?act=order_detail&order_id=425044\" target=\"_blank\" class=\"J_MakePoint status\">未付款</a> ";
            var s=GetHTOrderId(strUrl);
            //取到:order_id=425044
            Console.Read();
        }

        private static string GetHTOrderId(string linkUrl)
        {
            string pattern = "<a href=\"user.php?(?<A>.+?)&(?<orderID>.+?)\".*>(?<B>.+?)</a>";
            Regex rr = new Regex(pattern, RegexOptions.IgnoreCase);
            MatchCollection matches = rr.Matches(linkUrl);

            foreach (Match match in matches)
            {
                return match.Groups["orderID"].Value ;
            }
            return "";
        }

 

正则 群组 Group

标签:

原文地址:http://www.cnblogs.com/ChineseMoonGod/p/5337037.html

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