函数参考


StringIsAlNum

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

StringIsAlNum ( "字符串" )

参数

字符串 要检查的字符串

返回值

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

注意/说明

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

相关

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

示例/演示


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