Difference between revisions of "MC-Basic:STR$"
m (1 revision) |
|||
| Line 40: | Line 40: | ||
* [[Axystems:MC-Basic:VAL|VAL]] | * [[Axystems:MC-Basic:VAL|VAL]] | ||
| − | + | [[Category:Axystems:MC-Basic:String_Manipulation|STR$]] | |
}} | }} | ||
Revision as of 14:56, 6 March 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