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;