string$()
Returns string length count made up of
char.
You can omit the dollar symbol and type string() .
Syntax
string
= string$(
count
,
char
)
string
= string(
count
,
char
)
char
can also be a numeric ASCII code
Example
' Set s to "---" (three dashes)
s = string$( 3, "-" )
See also space$() command.