MC-Basic:STRL$
STRL$ returns the string representation of long-type number.
Syntax
STRL$(<number>, <format_string>)
Type
<return value>: String
<number>: Long, Double (implicitly converted to Long)
<format_string>: String
Range
<number>: MinLong to MaxLong
<format_string>: a valid sprintf() integer format - %d, %i, %u, %o, %x, %X, %c
%d, %i - signed decimal %u - unsigned decimal %o - octal %x, %X - hexadecimal %c - unsigned char
Scope
Configuration, Task or Terminal
Limitations
Read only
Examples
-->PRINT STRL$(60, "%d")
60 (singned decimal)
-->PRINT STRL$(60,"%o")
74 (unsigned octal)
-->PRINT STRL$(60,"%x")
3c (unsigned hexadecimal)
-->PRINT STRL$(60,"%c")
< (unsigned char)