MC-Basic:STRL$
STRL$ returns the string representation of a number.
Syntax
STRL$(<number>, <format_string>)
Type
<return value>: String
<number>: Long
<format_string>: String
Range
<return value>: String
<number>: 0 to MaxLong
Scope
Configuration, Task or Terminal
Limitations
Read only
Examples
-->I1=12345
-->PRINT STR$(i1)+"A"
12345A