📜  excel vba检查字符串是否仅包含字母字符 - VBA代码示例

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

代码示例1
'VBA function to test if a string contains only letters:

Function IsAlpha(s) As Boolean
    IsAlpha = Len(s) And Not s Like "*[!a-zA-Z]*"
End Function