Answers for "how to check if a string has only letters"

VBA
0

vbnet check if string is only letters

If System.Text.RegularExpressions.Regex.IsMatch(MyString, "^[A-Za-z]+$") Then
'String is only numbers
End If
Posted by: Guest on July-30-2021

Code answers related to "how to check if a string has only letters"

Code answers related to "VBA"

Browse Popular Code Answers by Language