Difference between revisions of "MC-Basic:STRL$"

From SoftMC-Wiki
Jump to: navigation, search
Line 18: Line 18:
 
|RANGE=
 
|RANGE=
 
''<number>'': MinLong to MaxLong<br>
 
''<number>'': MinLong to MaxLong<br>
''<format_string>'': a valid sprintf() integer format - %d, %i, %u, %o, %x, %X, %c
+
''<format_string>'': a valid sprintf() integer format  
 
 
 
<pre>
 
<pre>
 
%d, %i - signed decimal
 
%d, %i - signed decimal
Line 42: Line 41:
 
|EXAMPLE=
 
|EXAMPLE=
 
-->PRINT STRL$(60, "%d")<br>
 
-->PRINT STRL$(60, "%d")<br>
60 (singned decimal)<br>
+
60 <br>
 
-->PRINT STRL$(60,"%o")<br>
 
-->PRINT STRL$(60,"%o")<br>
74 (unsigned octal)<br>
+
74 <br>
 
-->PRINT STRL$(60,"%x")<br>
 
-->PRINT STRL$(60,"%x")<br>
3c (unsigned hexadecimal)<br>
+
3c <br>
 
-->PRINT STRL$(60,"%c")<br>
 
-->PRINT STRL$(60,"%c")<br>
< (unsigned char)
+
<  
 
 
 
|SEE ALSO=
 
|SEE ALSO=
 
* [[Axystems:MC-Basic:VAL|VAL]]
 
* [[Axystems:MC-Basic:VAL|VAL]]

Revision as of 08:30, 20 March 2014

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 - 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
-->PRINT STRL$(60,"%o")
74
-->PRINT STRL$(60,"%x")
3c
-->PRINT STRL$(60,"%c")
<

See Also