|
STR$
Abbreviation: ST <SHIFT+R>
TYPE: String Function
FORMAT: STR$ (<numeric>)
Action: STR$ gives you the STRing representation of the numeric
value of the argument. When the STR$ value is converted to each
variable represented in the <numeric> argument, any number
shown is followed by a space and, if it's positive, it is also
preceded by a space.
EXAMPLE of STR$ Function:
100 FLT = 1.5E4: ALPHA$ = STR$(FLT)
110 PRINT FLT, ALPHA$
15000 15000
|