我正试图将以下模式中的扼杀与ex相匹配。
string text = " Emma , The Last Leaf , Gulliver s travels ";
string pattern = @" (.*?) ,?";
foreach (Match match in Regex.Matches(text,pattern,RegexOptions.IgnoreCase))
{
Console.WriteLine(match + " " + match.Index);
Console.WriteLine(match.Groups[1].Captures[0]);
}
这与“Emma”和“最后印页”相匹配,但第三种相匹配是“Gulliver”。 但所期望的配对是“肝脏旅行”。 我怎么能为这种模式 build?