ASIC
Search this site
ASIC
Downloads
Readme
Changelog
Getting Started
Installation
Tutorial
Integrated Editor/Compiler Environment
Using the Debugger
Command-Line Compiler Options
Language Elements
Keyword Reference
Compatibility with BASICA/GWBASIC
Technical Details/Tips
Multiple Object Module Programs
Converting GWBASIC Programs
Error Messages
Keyword Reference
>
STR$
Format
string1 = STR$ (number1)
Description
This statement will convert number1 to a string format and store the string format in string1.
Example
A=1234
A$ = STR$(A)
After execution of these statements, A$ would contain the string "1234".
See Also
VAL