IsString
From AutoIt Wiki
Checks if a variable is a string type. Adapted from AutoIt docs.
Contents |
Syntax
$chk = IsString(var)
Parameters
| var | The variable to check. |
Return Value
Success: Returns 1.
Failure: Returns 0 if expression is not a string type.
Example
$x = IsString("foo") ; returns 1