Programming instructions

Intermec Fingerprint v7.61 Programmers Reference Manual Ed. 7250
Chapter 2 Program Instructions
STR$
Field of Application
Function returning the string representation of a numeric expression.
Syntax STR$(<nexp>)
<nexp> is the numeric expression from which the string representation
will be returned.
Remarks
This is the complementary function for the VAL function.
Example
In this example, the value of the numeric variable A% is converted to string
representation and assigned to the string variable A$:
10 A%=123
20 A$=STR$(A%)
30 PRINT A%+A%
40 PRINT A$+A$
RUN
yields:
246
123123