RETURNS THE STRING CORRESPONDING TO THE NUMBER V
ACTION
The function STR$(V) returns the string corresponding to the number V.
STR$(V) performs the inverse fonction of VAL(N).
Remark: the keyword STR$ ends by '$' : it means that the returned value is a string.
SYNTAX:
Result$=STR$(V)
USE ERROR EXAMPLE
print str$(1234)
print "1234"
STR$()
STR$(V)
SEE ALSO
INSERT$()
INSTR()
LEFT$()
LEN()
LOWER$()
LTRIM$()
MID$()
RIGHT$()
RTRIM$()
STRING$()
TRIM$()
UPPER$()