vbnet check if string is only letters

The solution for “vbnet check if string is only letters” can be found here. The following code will assist you in solving the problem.

If System.Text.RegularExpressions.Regex.IsMatch(MyString, “^[A-Za-z]+$”) Then
‘String is only numbers
End If

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts