Re: large files

2013-03-05 Thread Dr.Ruud
On 2013-03-05 21:41, Chris Stinemetz wrote: I am working on a script to parse large files, by large I mean 4 million line+ in length and when splitting on the delimiter ( ; ) there are close to 300 fields per record, but I am only interested in the first 44. Try Text::CSV_XS. -- Ruud -- To

Re: large files

2013-03-05 Thread John SJ Anderson
On Tue, Mar 5, 2013 at 12:41 PM, Chris Stinemetz wrote: > Hello List, > > I am working on a script to parse large files, by large I mean 4 million > line+ in length and when splitting on the delimiter ( ; ) there are close > to 300 fields per record, but I am only interested in the first 44. Cons

Re: large files

2013-03-05 Thread Rob Dixon
On 05/03/2013 20:41, Chris Stinemetz wrote: Hello List, I am working on a script to parse large files, by large I mean 4 million line+ in length and when splitting on the delimiter ( ; ) there are close to 300 fields per record, but I am only interested in the first 44. I have begin testing to

large files

2013-03-05 Thread Chris Stinemetz
Hello List, I am working on a script to parse large files, by large I mean 4 million line+ in length and when splitting on the delimiter ( ; ) there are close to 300 fields per record, but I am only interested in the first 44. I have begin testing to see how fast the file can be read in a few dif