RETURNS THE STRING COMPOSED OF N TIMES THE CHARACTER C
ACTION
The function STRING$(N,C) returns the string composed of N times the character C.
N must be greater than 0.
C must be a string containing only one character.
Remark: the keyword STRING$ ends by '$' : it means that the returned value is a string.
SYNTAX:
Result$=STRING$(N,C)
USE ERROR EXAMPLE
print string$(20,"*")
print "********************"
STRING$()
STRING$(N,C)
SEE ALSO
INSERT$()
INSTR()
LEFT$()
LEN()
LOWER$()
LTRIM$()
MID$()
RIGHT$()
RTRIM$()
STR$()
TRIM$()
UPPER$()