| [Overview][Resource strings][Constants][Types][Procedures and functions][Index] | 
Creates and concatenates N copies of a string
Source position: strutils.pp line 54
| function DupeString( | 
| const AText: string; | 
| ACount: Integer | 
| ):string; | 
| AText | 
 | String to duplicate | 
| ACount | 
 | Number of copies to create | 
Copies of the original string.
DupeString returns a string consisting of ACount concatenations of AText. Thus
DupeString('1234567890',3);
will produce a string
'123456789012345678901234567890'
None.