标签:
//匹配字符串中的连续数字 string txt = "AAA12345678AAAA"; string m = Regex.Match(txt, @"\d+").Value; Console.WriteLine(m);
//匹配字符串中的连续数字中的 前三位数字 string txt = "AAA12345678AAAA"; string m = Regex.Match(txt, @"(\d{3})(\d{1,})").Groups[1].Value; Console.WriteLine(m);
标签:
原文地址:http://www.cnblogs.com/lb809663396/p/5343930.html