Re: [fpc-pascal] function String Replication

2005-03-20 Thread Peter J. Haas
Hi Sergio, on 2005-03-04T22:21:15+01:00 you wrote: > I am looking for the name of the native fpc function for: DupeString, unit StrUtils. Take a look in the Run-Time library reference guide: http://www.freepascal.org/docs.html (Standard units reference manual). > function ReplicateStr(s:strin

[fpc-pascal] function String Replication

2005-03-20 Thread Sergio Marcelo
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; ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.free