日期:2014-05-18 浏览次数:20793 次
string p = @"(?<=12)\d"; string s = "1234567892384823748124512"; foreach (Match m in Regex.Matches(s, p)) { Console.WriteLine(m.Value); }