例如,我有一个模式,我正在使用\ G选项搜索,所以它记住它的最后一次搜索。我希望能够在.NET c#中重用这些(即:将匹配保存到集合中)
例如:
string pattern = @"\G<test:Some\s.*";
string id = RegEx.Match(orig, pattern).Value;
// The guy above has 3 matches and i want to save all three into a generic list
我希望这很清楚,如果没有,我可以详细说明。
谢谢: - )
答案 0 :(得分:2)
您需要使用RegEx.Matches函数并遍历集合。