< Futurebasic < Language < Reference 
      STRING$ & STRING$$
Syntax
stringOfChars$ = STRING$(numChars,{char$|asciiValue%})
container$$ = STRING$$(numChars,{char$|asciiValue%})
Revised
July 27, 2000 (Release 3)
Description
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
PRINT STRING$(12, "LOG") PRINT STRING$(9, 70) program output: LLLLLLLLLLLL FFFFFFFFF
See Also
SPACE$; ASC; CHR$; DEF BLOCKFILL; 
Appendix F: The ASCII Character Codes
    This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.