Futurebasic/Language/Reference/stringstr

STRING$ & STRING$$ edit

Syntax edit

stringOfChars$ = STRING$(numChars,{char$|asciiValue%})
container$$ = STRING$$(numChars,{char$|asciiValue%})

Revised edit

July 27, 2000 (Release 3)

Description edit

This function returns a string or a container consisting of numChars repetitions of a single character. If you specify a string (char$) in the second parameter, the first character of char$ is repeated. If you specify a number (asciiValue%) in the second parameter, STRING$ repeats the character whose ASCII value is asciiValue%. numChars must be in the range 0 through 255; if numChars equals zero, STRING$ returns an empty (zero-length) string.

Example edit

PRINT STRING$(12, "LOG")
PRINT STRING$(9, 70)

program output:
LLLLLLLLLLLL
FFFFFFFFF

See Also edit

SPACE$; ASC; CHR$; DEF BLOCKFILL; Appendix F: The ASCII Character Codes