在简化的例子中,有2个正则表达式,一个区分大小写,另一个不是.这个想法将是有效地创建一个IEnumerable集合(参见下面的“组合”),结合结果.
string test = "abcABC"; string regex = "(?<grpa>a)|(?<grpb>b)|(?<grpc>c)]"; Regex regNoCase = new Regex(regex,RegexOptions.IgnoreCase); Regex regCase = new Regex(regex); MatchCollection matchNoCase = regNoCase.Matches(test); MatchCollection matchCase = regCase.Matches(test); //Combine matchNoCase and matchCase into an IEnumerable IEnumerable<Match> combined= null; foreach (Match match in combined) { //Use the Index and (successful) Groups properties //of the match in another operation }
在实践中,MatchCollections可能包含数千个结果,并可以使用长时间动态创建的REGEXes来运行,所以我想避免将结果复制到数组等.我还在学习LINQ,并且对如何去做模糊将这些或性能与现有的缓慢过程结合起来.