TO_STR(A)
Converts A to string
String TO_STR(String A)
A - String value. If it is not a string type, it is implicitly converted to a string type.
String value
> PRINT TO_STR(1)
1
> PRINT TO_STR(1.0)
1.000000
> PRINT TO_STR(TRUE)
TRUE
> PRINT TO_STR("HELLO WORLD")
HELLO WORLD
> PRINT TO_STR(INT_ARRAY(5))
{ 0, 0, 0, 0, 0 }
> PRINT TO_STR(FLOAT_ARRAY(5))
{ 0.000000, 0.000000, 0.00000, 0.000000, 0.000000 }
> PRINT TO_STR(BOOL_ARRAY(5))
{ FALSE, FALSE, FALSE, FALSE, FALSE }
> PRINT TO_STR(STRING_ARRAY(5))
{ "", "", "", "", "" }