VBNET Verifique se a string é apenas letras

If System.Text.RegularExpressions.Regex.IsMatch(MyString, "^[A-Za-z]+$") Then
'String is only numbers
End If
Salty Joe