id like to do something like
foreach (Match match in regex) { MessageBox.Show(match.ToString()); }
Thanks for any help...!
There is a RegEx.Matches method:
RegEx.Matches
foreach (Match match in regex.Matches(myStringToMatch)) { MessageBox.Show(match.Value); }
To get the matched substring, use the Match.Value property, as shown above.
Match.Value
2.1m questions
2.1m answers
60 comments
57.0k users