For example, I have a pattern that I am searching for using the \G
option so it remembers its last search. I would like to be able to reuse these in .NET c# (ie: save the matches into a collection)
For Example:
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
I hope this is clear, I can elaborate if not.
Thanks :-)