strrep()
Learn how to use the strrep() function to repeat the input value.
Replicates a string the number of times specified.
Syntax
strrep(
value,
multiplier,
[ delimiter ])
Parameters
Name | Type | Required | Description |
---|---|---|---|
value | string | ✔️ | The string to replicate. |
multiplier | int | ✔️ | The amount of times to replicate the string. Must be a value from 1 to 67108864. |
delimiter | string | The delimeter used to separate the string replications. The default delimiter is an empty string. |
Returns
The value string repeated the number of times as specified by multiplier, concatenated with delimiter.
If multiplier is more than the maximal allowed value of 1024, the input string will be repeated 1024 times.
Example
print from_str = strrep('ABC', 2), from_int = strrep(123,3,'.'), from_time = strrep(3s,2,' ')
Output
from_str | from_int | from_time |
---|---|---|
ABCABC | 123.123.123 | 00:00:03 00:00:03 |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.