SPACE$ Function ---------------------------------------------------------------------------- Action Returns a string of spaces of length n. Syntax SPACE$( n) Remarks The expression n specifies the number of spaces you want in the string. It is rounded to an integer and must be between 0 and 32,767, inclusive. See Also LSET, Print Using, RSET, SPC, String $ Example The following example demonstrates use of the SPACE$ function. CLS' Clear the screen. FOR I=1 TO 5 X$=SPACE$(I) PRINT X$;I NEXT I Output 1 2 3 4 5