looping through multiple arrays

2008-09-04 Thread Bobby
Hi, I have a large pipe delimited text file that i want to loop through and sort out a column of data within that file. Let's call this column $sizes. I want to group these different sizes into categories. i.e. @sizeA = (A,B,C); @sizeB = (D,E,F); @sizeC = (G,H,I); This is what i want to do:

Re: looping through multiple arrays

2008-09-04 Thread Raja Vadlamudi
On Thu, Sep 4, 2008 at 12:36 PM, Raja Vadlamudi [EMAIL PROTECTED] wrote: On Thu, Sep 4, 2008 at 11:22 AM, Bobby [EMAIL PROTECTED] wrote: Hi, I have a large pipe delimited text file that i want to loop through and sort out a column of data within that file. Let's call this column $sizes. I

Re: looping through multiple arrays

2008-09-04 Thread John W. Krahn
Raja Vadlamudi wrote: On Thu, Sep 4, 2008 at 12:36 PM, Raja Vadlamudi [EMAIL PROTECTED] wrote: On Thu, Sep 4, 2008 at 11:22 AM, Bobby [EMAIL PROTECTED] wrote: I have a large pipe delimited text file that i want to loop through and sort out a column of data within that file. Let's call this

Re: looping through multiple arrays

2008-09-04 Thread Jenda Krynicky
From: Bobby [EMAIL PROTECTED] Hi, I have a large pipe delimited text file that i want to loop through and sort out a column of data within that file. Let's call this column $sizes. I want to group these different sizes into categories. i.e. @sizeA = (A,B,C); @sizeB = (D,E,F); @sizeC =