Format
string1=SPACE$(number1)
Description
This statement will return a string containing number1 ASCII space
characters.
Example
A$=SPACE$(10)
B$="<"+A$
B$=B$+">"
After execution of these statements, variable "B$" will contain the string
"< >"
See Also
|