Prince99 has asked for the wisdom of the Perl Monks concerning the following question:
Any suggestions to get me heading in the right direction would be appreciated. Prince99 Too Much is never enough...sub Read_File { $Index = 1; while(<CLAIMS>) { chomp; $FirstItem[$FirstItem[$Index]] = substr($_,1,8); $SecondItem[$SecondItem[$Index]] = substr($_,9,6); $ThirdItem[$ThirdItem[$index]] = substr($_,15,2); #File continues ad nauseum but you get the idea $Index++; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(boo)Re: indexing an array
by boo_radley (Parson) on Apr 05, 2001 at 19:53 UTC | |
by suaveant (Parson) on Apr 05, 2001 at 20:17 UTC | |
|
Re: indexing an array
by tadman (Prior) on Apr 05, 2001 at 20:35 UTC | |
|
Re: indexing an array
by Tortue (Scribe) on Apr 05, 2001 at 20:41 UTC | |
|
Re: indexing an array
by mr.nick (Chaplain) on Apr 05, 2001 at 20:46 UTC |