I'm getting over and over the following message error "Unexpected end of statement in the line 2" I can't see any thing wrong with it? What's I'm doing wrong ..
Sub Main()
Dim regex As Regex = New Regex("\d+")
Dim match As Match = regex.Match("Dot 77 Perls")
If match.Success Then
MessageBox.Show(match.Value)
End If
End Sub