MC-Basic:STRD$

From SoftMC-Wiki
Revision as of 14:17, 19 March 2014 by Nurit (talk | contribs)
Jump to: navigation, search

STRD$ returns the string representation of a number.

Syntax

STRD$(<number>, <format_string>)

Type

<return value>: String
<number>: Long, Double
<format_string>: String

Range

<number>: MinDouble to MaxDouble
<format_string>: a valid sprintf() floating point format

Scope

Configuration, Task or Terminal

Limitations

Read only

Examples

-->PRINT STRD$(45.5, "%f")
45.500000
-->PRINT STRD$(45.5,"%g")
45.5
-->PRINT STRD$(45.5,"%e")
4.550000e+01

See Also