Difference between revisions of "MC-Basic:STRD$"
Line 21: | Line 21: | ||
<pre> | <pre> | ||
− | %f - | + | %f - a non-exponent presentation |
− | %e, %E - | + | %e, %E - an exponent presentation |
− | %g, %G - | + | %g, %G - presentation depends on the value of the input |
</pre> | </pre> | ||
Revision as of 09:11, 20 March 2014
STRD$ returns the string representation of a double-type number.
Syntax
STRD$(<number>, <format_string>)
Type
<return value>: String
<number>: Double, Long
<format_string>: String
Range
<number>: MinDouble to MaxDouble
<format_string>: a valid sprintf() floating point format
%f - a non-exponent presentation %e, %E - an exponent presentation %g, %G - presentation depends on the value of the input
Scope
Configuration, Task or Terminal
Limitations
Read only
Examples
-->PRINT STRD$(45.5, "%f")
45.500000
-->PRINT STRD$(45.5,"%e")
4.550000e+01
-->PRINT STRD$(45.5,"%g")
45.5