|
<<
Index
>>
|
FutureBasic
|
space, space$
|
|
function
|
|
Syntax
CFStringOfSpaces =
space(
numChars )
PascalStringOfSpaces$ =
space$(
numChars )
Description
Returns a string consisting of numChars space characters. numChars must be in the range 0 through 255 for Pascal strings but can be any length for CFStrings. space(0)
and space$(0)
return an empty (zero-length) string.
See also
print; string$