Re: Loop within Loop

2008-03-18 Thread hridyesh pant
you can use hash,where key is the column and value is the refrence to an array,and this array can contain multiple data. --Hridyesh Gunnar Hjalmarsson wrote: Bobby wrote: I have a text file with five colums of data (ColumA-E). Within each column there could be multiple data with a comma seper

Re: Loop within Loop

2008-03-18 Thread John W. Krahn
Bobby wrote: I have a text file with five colums of data (ColumA-E). Within each column there could be multiple data with a comma seperating each piece of data. How do i white a loop to parse through the data set and assign each column a variable and each piece of data within that column a differ

Re: Loop within Loop

2008-03-18 Thread Gunnar Hjalmarsson
Bobby wrote: I have a text file with five colums of data (ColumA-E). Within each column there could be multiple data with a comma seperating each piece of data. How do i white a loop to parse through the data set and assign each column a variable and each piece of data within that column a differ

Loop within Loop

2008-03-18 Thread Bobby
I have a text file with five colums of data (ColumA-E). Within each column there could be multiple data with a comma seperating each piece of data. How do i white a loop to parse through the data set and assign each column a variable and each piece of data within that column a different variable?