Difference between revisions of "MC-Basic:STRL$"
m (Text replace - "''<return value>''" to "<''return value''>") |
|||
Line 59: | Line 59: | ||
* [[Axystems:MC-Basic:STRD$|STRD$]] | * [[Axystems:MC-Basic:STRD$|STRD$]] | ||
* [[Axystems:MC-Basic:HEX$|HEX$]] | * [[Axystems:MC-Basic:HEX$|HEX$]] | ||
− | * [[ | + | * [[MC-Basic:CHR$|CHR$]] |
[[Category:Axystems:MC-Basic:String_Manipulation|STRL$]] | [[Category:Axystems:MC-Basic:String_Manipulation|STRL$]] | ||
}} | }} |
Revision as of 08:36, 22 May 2014
STRL$ returns the string representation of long-type number.
Syntax
STRL$(<number>, <format_string>)
Type
<return value>: String
<number>: Long, Double
<format_string>: String
IMPORTANT | |
A double-type input is implicitly converted to long |
Range
<number>: MinLong to MaxLong
<format_string>: a valid sprintf() integer format
%d, %i - signed decimal %u - unsigned decimal %o - octal %x, %X - hexadecimal %c - unsigned char
WARNING | |
If an invalid format string is used, the behavior is undefined |
Scope
Configuration, Task or Terminal
Limitations
Read only
Examples
-->PRINT STRL$(60, "%d")
60
-->PRINT STRL$(60,"%o")
74
-->PRINT STRL$(60,"%x")
3c
-->PRINT STRL$(60,"%c")
<