/ Published in: C#
Expand |
Embed | Plain Text
MatchCollection theMatches = RE.Matches(@"Path = ""\\MyServer\MyService\MyPath; \\MyServer2\MyService2\MyPath2\"""); foreach (Match m in theMatches) { for (int counter = 0;counter < m.Groups.Count; counter++) { string ss = RE.GroupNameFromNumber(counter); Group g = m.Groups[counter]; string s = g.ToString(); } }
You need to login to post a comment.
