码迷,mamicode.com
首页 > Windows程序 > 详细

c# 正则

时间:2018-01-17 01:19:40      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:pos   har   group   line   match   value   post   lin   bsp   

  Regex reg = new Regex("^do(es)(xy)?$");
            var result = reg.Match("doesxy");
            foreach (var item in result.Groups)
            {
                Console.WriteLine(item);
            }
            Match result2 = reg.Match("");
            foreach (var item in result2.Groups)
            {
                Console.WriteLine(item);
            }

            MatchCollection mc = Regex.Matches("1id1sid1x2id2sid2", @"\d*id(\d*)sid(\d*)");
            if (mc[0].Groups.Count == 3)//会有三个匹配项的
            {
                for (int i = 0; i < 3; i++)
                {
                    int x;
                    int.TryParse(mc[0].Groups[i].Value, out x);
                    Console.WriteLine(x);
                }
            }

 

c# 正则

标签:pos   har   group   line   match   value   post   lin   bsp   

原文地址:https://www.cnblogs.com/danlis/p/8297652.html

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