STR($} (num-exp)

STR$ converts a REAL or INTEGER expression into a string. This function is the reverse of the V

Program Example.

00100 REM The STR$ function
00110 A0 = 85
00120 LET B0$ = STR$(A0)
00130 PRINT B0$
00140 END

Try it

See also CHR$