Delphi Programming RTL Reference|By Category|Alphabetically|By Unit
function DupeString(const AText: string; ACount: Integer): string;
Returns a string repeated a specified number of times.
var s : string;
s:='ADP';
s=DupeString(s,5);
//s='ADPADPADPADPADP'
|
String Types in Delphi
Understanding and managing string data types in Delphi's Object Pascal. Learn about differences between Short, Long, Wide and null-terminated strings.
StringOfChar,
|
Free Delphi code snippet inside every Delphi Newsletter! |
|
|
|
Got some code to share? Got a question? Need some help? |
|
|