System.StrUtils.DupeString
Delphi
function DupeString(const AText: string; ACount: Integer): string;
C++
extern DELPHI_PACKAGE System::UnicodeString __fastcall DupeString(const System::UnicodeString AText, int ACount)/* overload */;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.StrUtils.pas System.StrUtils.hpp |
System.StrUtils | System.StrUtils |
説明
それ自体が繰り返し回数を指定する文字列の結合を返します。
DupeString は,AText で指定された文字列を,ACount で指定した回数だけ繰り返す文字列を返します。次に例を示します。
S := DupeString('Ha', 5);
S を文字列「HaHaHaHaHa」に設定します。