Topic complex |
String functions |
Function |
ntimes() |
Short |
Multiple repeat of a string |
Syntax |
NTIMES(s : STRIONG; n : INTEGER) : STRING |
Parameter |
s : any STRING
n : number of repeats |
Return |
String where s is repeated n times |
See also: |
|
Description |
A string can be build out of maximal 255 chars.
Example:
NTIMES('+',10) -> '++++++++++'
|