Purpose |
Return a
|
Syntax |
s$ = REPEAT$(count&, string_expr) |
Remarks |
The REPEAT$ function has the following parts: |
count& |
Is an
|
string_expr |
The string to be duplicated. |
See also |
|
Example |
x$ = REPEAT$(5, "<*> ") |
Result |
<*> <*> <*> <*> <*> |