任何人都可以解释为什么
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
而不是空的?
解决方法
捕获与组不同.
matchResults.Groups[0]
永远是全场比赛.所以你的团队一定会
matchResults.Groups[1],
如果正则表达式是“(a)”.既然它是“(?:a)”,你可以检查它是否为空.
捕获是一个单独的东西 – 它们允许你做这样的事情:
如果你有正则表达式“(.)”,那么它将匹配字符串“abc”.
然后组[1]将是“c”,因为这是最后一组,而
>组[1] .Captures [0]是“a”>组[1] .Captures [1]是“b”>组[1] .Captures [2]是“c”.