Regex.Match和非捕获组

时间:2011-08-10 06:06:51

标签: c# .net regex

任何人都可以解释为什么Regex.Match捕获非捕获组。在MSDN中找不到任何关于它的信息。为什么

Regex regexObj = new Regex("(?:a)");
Match matchResults = regexObj.Match("aa");
while (matchResults.Success)
{
    foreach (Capture g in matchResults.Captures)
    {
        Console.WriteLine(g.Value);
    }
    matchResults = matchResults.NextMatch();
}

产生输出

a
a

而不是空的?

1 个答案:

答案 0 :(得分:7)

捕获与群组不同。

matchResults.Groups[0]

总是全场比赛。所以你的小组本来就是

matchResults.Groups[1],

如果正则表达式是"(a)"。现在,因为它是"(?:a)",你可以检查它是否为空。

捕获是一个单独的东西 - 它们允许你做这样的事情:

如果你有正则表达式"(.)+",那么它将匹配字符串"abc"

组[1]则为“c”,因为这是最后一组,而

  1. 群组[1] .Captures [0]为“a”
  2. 组[1] .Captures [1]为“b”
  3. 群组[1] .Captures [2]为“c”。