62,254
社区成员
发帖
与我相关
我的任务
分享Regex re = new Regex("^((?:0[1-9]|[12][0-9]|3[0-5]),){4}(0[1-9]|[12][0-9]|3[0-5])\\|(0[1-9]|[12][0-9]|3[0-5]),(0[1-9]|[12][0-9]|3[0-5])$", RegexOptions.None);
MatchCollection mc = re.Matches("text");
foreach (Match ma in mc)
{
}