It does not 100% clear what you are looking for, but it looks like you want to get the value for this group in a matched regular expression. This is possible in C # (and .Net in general).
For instance.
var regex = new Regex(@"(a+)(\d+)");
var match = regex.Match("a42");
Console.WriteLine(match.Groups[1].Value);
Console.WriteLine(match.Groups[2].Value);
Mono , , .