Returns the string that matches the specified group. The first group is always the string that matches the entire regular expression. Groups are ordered by the left-to-right order of the left parentheses of the group.

 public System.String Group(int group)
Public Function Group(ByVal group As Integer) As String

The 0-based index of the group for which to return a match.

The String that matches the specified group.

string firstGroupMatch = searchMatch.Group(0);
Dim firstGroupMatch As String = searchMatch.Group(0)