函数参考


IsString

检测某个变量是否字符类型数据.

IsString ( 变量 )

参数

变量 要检查的变量/表达式.

返回值

成功: 返回 1.
失败: 返回 0,说明指定的表达式并非字符类型.

注意/说明

None.

相关

IsArray, IsFloat, IsInt, IsNumber, IsBool, IsHWnd, IsBinary, IsPtr, String, VarGetType

示例/演示


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