有没有办法让RegEx.Replace中使用的变量在.NET中使用?

时间:2009-07-23 17:54:49

标签: .net regex

例如,我有一个模式,我正在使用\ 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

我希望这很清楚,如果没有,我可以详细说明。

谢谢: - )

1 个答案:

答案 0 :(得分:2)

您需要使用RegEx.Matches函数并遍历集合。