Returns the concatenation of a string with itself a specified number of repeats.
function DupeString(const AText: string; ACount: Integer): string;
AnsiString DupeString(const AnsiString AText, int ACount);
StrUtils
DupeString returns a string containing ACount repeats of the string specified by AText. For example,
S := DupeString('Ha', 5);
sets S to the string 'HaHaHaHaHa'.
StringOfChar
StringReplace
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|