Programming instructions
Intermec Fingerprint v7.61 – Programmer’s Reference Manual Ed. 7244
Chapter 2 Program Instructions
SPACE$
Field of Application
Function returning a specifi ed number of space characters.
Syntax SPACE$(<nexp>)
<nexp> is the number of space characters to be returned.
Remarks
This function is useful for more complicated spacing, for example in tables.
Examples
Printing of two left-justifi ed columns on the screen:
10 FOR Q%=1 TO 6
20 VERBOFF:INPUT "",A$
30 VERBON:PRINT A$;
40 VERBOFF:INPUT "",B$
50 VERBON
60 C$=SPACE$(25-LEN(A$))
70 PRINT C$+B$
80 NEXT Q%
90 END
RUN
Enter:
January ↵
February ↵
March ↵
April ↵
May ↵
June ↵
July ↵
August ↵
September ↵
October ↵
November ↵
December ↵
yields:
January February
March April
May June
July August
September October
November December