in reply to Re^2: Seperating Fixed Line Feed into Fields
in thread Seperating Fixed Line Feed into Fields
Edit: I may be reading your question incorrectly. It should declare a new @fields inside each loop iteration though, so there should be nothing added to the array, it's a fresh array each iteration.my @big_list_of_fields; while (<DATA>) { ... # unpacking here ... push @big_list_of_fields, \@fields; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: Seperating Fixed Line Feed into Fields
by drodinthe559 (Monk) on Jun 10, 2009 at 21:01 UTC | |
by Transient (Hermit) on Jun 11, 2009 at 13:47 UTC |