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

NameTypeRequiredDescription
valuestring✔️The string to replicate.
multiplierint✔️The amount of times to replicate the string. Must be a value from 1 to 67108864.
delimiterstringThe 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_strfrom_intfrom_time
ABCABC123.123.12300:00:03 00:00:03