函数参考


StringIsAlpha

检查某个字符串是否仅含有字母(文字字符).

StringIsAlpha ( "字符串" )

参数

字符串 要检查的字符串

返回值

成功: 返回值为 1.
失败: 返回值为 0, 说明字符串含有非字母字符.

注意/说明

字符串中含有任何空白符都将导致 StringIsAlpha 返回 0.

相关

StringIsAlNum, StringIsASCII, StringIsDigit, StringIsLower, StringIsSpace, StringIsUpper, StringIsXDigit, StringUpper, StringLower

示例/演示


Local $x = "This is a sentence with whitespace."
MsgBox(4096,"检查结果", "返回值为:" & StringIsAlpha($x))