Difference between revisions of "MC-Basic:STR$"
m (Miborich moved page Axystems:MC-Basic:STR$ to MC-Basic:STR$: Global renaming of Axystems: namespace into (Main):) |
|||
| Line 38: | Line 38: | ||
|SEE ALSO= | |SEE ALSO= | ||
| − | * [[ | + | * [[MC-Basic:VAL|VAL]] |
[[Category:Axystems:MC-Basic:String_Manipulation|STR$]] | [[Category:Axystems:MC-Basic:String_Manipulation|STR$]] | ||
}} | }} | ||
Revision as of 08:43, 22 May 2014
STR$ returns the string representation of a number.
Syntax
STR$(<number>)
Availability
All versions
Type
<return value>: String
<number>: Double
Range
<return value>: String
<number>: 0 to MaxDouble
Scope
Configuration, Task or Terminal
Limitations
Read only
Examples
-->I1=12345
-->PRINT STR$(i1)+"A"
12345A