Futurebasic/Language/Reference/stringstr
(Redirected from Futurebasic/language/reference/stringstr)
STRING$ & STRING$$
editSyntax
editstringOfChars$ = STRING$(numChars,{char$|asciiValue%})
container$$ = STRING$$(numChars,{char$|asciiValue%})
Revised
editJuly 27, 2000 (Release 3)
Description
editThis 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
editPRINT STRING$(12, "LOG") PRINT STRING$(9, 70) program output: LLLLLLLLLLLL FFFFFFFFF
See Also
editSPACE$; ASC; CHR$; DEF BLOCKFILL;
Appendix F: The ASCII Character Codes