Name
StrStr -- convert a number to a string
Synopsis
var$ = StrStr(value[, digits])
Function
Converts the numerical value value to a string and returns it. The optional argument digits allows you to define how many decimal places shall be used if value is a real number. It defaults to 2.

Inputs
value
number to convert to string
digits
optional: how many decimal places to use if a float value is specified (defaults to 2)
Results
var$
string representing the numeric value
Example
test$ = StrStr(256)
Print(test$)
Prints "256" to the screen.

Show TOC