id like to do something like
foreach (Match match in regex) { MessageBox.Show(match.ToString()); }
Thanks for any help...!
from MSDN
string pattern = @"\b\w+es\b"; Regex rgx = new Regex(pattern); string sentence = "Who writes these notes?"; foreach (Match match in rgx.Matches(sentence)) { Console.WriteLine("Found '{0}' at position {1}", match.Value, match.Index); }