function DupeString ( const Source : string; Count : Integer ) : string;
Description
The DupeString function creates a string containing a sequence of Count copies of a Source string.
Related commands
StringOfChar Creates a string with one character repeated many times
Example code : A simple example
var
myString : AnsiString;
begin
myString := DupeString('Hello ', 3);
ShowMessage('myString = '''+myString+'''');
end;
Show full unit code
myString = 'Hello Hello Hello '