检测某个变量是否字符类型数据.
IsString ( 变量 )
变量 | 要检查的变量/表达式. |
成功: | 返回 1. |
失败: | 返回 0,说明指定的表达式并非字符类型. |
Local $sString = "This is a string"
If IsString($sString) Then
MsgBox(4096, "", "The variable is a string")
Else
MsgBox(4096, "", "The variable is not a string")
EndIf