| 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 |
|
Download this web site as a Windows program.
|
|
|
|
| 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 ' | |
|
|