Repeat

STD.Str.Repeat( text, n )

STD.Uni.Repeat( text, n )

textThe string to be repeated (maximum length is 255 characters).
nThe number of repetitions.
Return: Repeat returns a STRING containing n concatenations of the string text..

The Repeat function returns the text string repeated n times.

Example:

A := STD.Str.Repeat('ABC',3); //A contains 'ABCABCABC'