DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Delphi Right Pad Function
Delphi right pad function
function RightPad(PadString : string ; HowMany : integer ; PadValue : string): string;
var
Counter : integer;
x : integer;
NewString : string;
begin
// if PadValue = '' then PadValue := CHR(32);
Counter := HowMany - Length(PadString);
for x := 1 to Counter do
begin
NewString := NewString + PadValue;
end;
Result := PadString + NewString;
end;




