Str
The Str() function converts a numeric value to a string.
Syntax
Str (Value)
Value | Any value |
Examples
Function | Output |
Str(1.356) | “1.356” |
Str(True) | “True” |
Str(ABC) | “ABC” |
Str(01234) | “01234” |
The Str() function converts a numeric value to a string.
Str (Value)
Value | Any value |
Function | Output |
Str(1.356) | “1.356” |
Str(True) | “True” |
Str(ABC) | “ABC” |
Str(01234) | “01234” |