📌  相关文章
📜  vbnet 检查字符串是否只有字母 - VBA 代码示例

📅  最后修改于: 2022-03-11 14:51:57.652000             🧑  作者: Mango

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