[fpc-pascal] function String Replication

Sergio Marcelo smace at smace.com.br
Fri Mar 4 22:21:17 CET 2005


I am looking for the name of the native fpc function for:

function ReplicateStr(s:string;x:Integer): String;
var
  i:Integer;
Begin
  For i:=0 to x-1 do
    Result += s;
end;





More information about the fpc-pascal mailing list