Returns the string representation of an expression.
String ( expression )
Parameters
expression | An expression to convert into a string. |
Return Value
Returns a string.
Remarks
Maximum string length is 2147483647 characters (but keep in mind that no line in an AutoIt script can exceed 4095 characters.)
Related
Int, Number, IsString
Example
$var = String(10)
;$var is the string "10"