I have a regular expression which pulls name value pairs
([^=;]*)=([^;]*)
"Data Source=server;Initial Database=myDB;foo=bar;"
That works fine and I can get to the first result using
m.Groups[0] // "Data Source=server"
m.Groups[1] // "Data Source"
m.Groups[2] // "Server"
How do I get to the second and third set of matches? My terminology is probably wrong, I would appreciate help with that as well.
Thanks!