我有一个字符串,其中包含
形式的重复模式 MM/DD/YYYY (FirstName LastName) Status Update: blah blah blah blah
E.G。
string test = "11/01/2011 (Joe Bob) Status Update: Joe is the collest guy on earfth 08/07/2010 (Rach Mcadam) Status Update: whatever I dont care 06/28/2009 (Some Guy) Status Update: More junk and note how I end there's not gonna be another date after me"
如何对此进行分组以便为每个匹配更新日期,名称和状态?
我试过
string datePattern = "\\d{1,2}/\\d{1,2}/\\d{0,4}";
string personPattern = "\\(\\w*\\)";
Regex regex = new Regex("(" + datePattern + ") (" + personPattern + ") (.*)");
MatchCollection matches = regex.Matches(test);
foreach (Match match in matches)
{
Console.WriteLine("##Match Found##");
Console.WriteLine("");
Console.WriteLine("");
Console.WriteLine(match.Groups[0]);//full text
Console.WriteLine("");
Console.WriteLine(match.Groups[1]);//date only
Console.WriteLine("");
Console.WriteLine(match.Groups[2]);//person
Console.WriteLine("");
Console.WriteLine(match.Groups[3]);//note
}
此时它什么也没有回来。
答案 0 :(得分:3)
空格未包含在\w
中,因此\w*
与Joe Bob
不匹配。尝试将personPattern
更改为"\\([ \\w]*\\)"
。
看起来你的正则表达式太贪婪,因为最后的.*
将匹配字符串的其余部分,而不是在下一个日期停止。尝试将正则表达式更改为以下内容:
Regex regex = new Regex("(" + datePattern + ") (" + personPattern + ") (.*?(?=$|" + datePattern + "))");