in reply to Re: Re: split and sysread()
in thread split and sysread()

The issue with the above is it still reads in the file one line at a time, right?. That's what I am trying to get away from.

But in order to pick out the right fields, you have to know where a line starts and stops. There's no getting around that.

You can either use sysread() to pull stuff in by blocks, then juggle blocks to handle lines that span blocks, or you can uses Perl's line-by-line IO. Your call.