Documentation Comments
Use this form to comment on this topic. You can also provide any general observations about the Online Documentation, or request that additional information be added in a future release.
Reality V15.0 ()
SPACE Function (DataBasic) (m618703+space_f.htm)
Generates a string containing a specified number of blank spaces.
SPACE(count)
count The number of blank spaces.
PRINT SPACE(10):"HELLO"
Prints 10 spaces followed by the word HELLO.
DIM M(10)
MAT M = SPACE(20)
Assigns a string consisting of 20 blanks to each of 10 elements of array M.
S = SPACE(7) L = "SMITH" C = "," F = "JOHN" N = L:S:C:S:F
Assigns the following string to variable N:
"SMITH , JOHN"