File read qn

2004-10-22 Thread Ajey Kulkarni
howdy!! I've a code snipped that reads the file into array. The file is a comma separated file. I want to say get 4th column of the whole file in an array. @lines = LIB::readFile($opt{f}); My @lines has the whole comma separated file. I would like to now get the 4th column of whole file (using @

Re: File read qn

2004-10-22 Thread David le Blanc
On Fri, 22 Oct 2004 20:13:05 -0700 (PDT), Ajey Kulkarni <[EMAIL PROTECTED]> wrote: > howdy!! > I've a code snipped that reads the file into array. > The file is a comma separated file. I want to say > get 4th column of the whole file in an array. > > @lines = LIB::readFile($opt{f}); > > My @lines

Re: File read qn

2004-10-22 Thread Ajey Kulkarni
David,Thanks much. I'll give it a shot and comeup with the code. This is a new learning to me today :) regards -Ajey On Sat, 23 Oct 2004, David le Blanc wrote: > On Fri, 22 Oct 2004 20:13:05 -0700 (PDT), Ajey Kulkarni <[EMAIL PROTECTED]> wrote: > > howdy!! > > I've a code snipped that reads the