in reply to Foreach Loop Optimization
open FH, "<database.txt" or die; <FH>; # ignore header line of CSV file while ( my $project_module_list = <FH> ) { chomp $project_module_list; ## put remainder of code here }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Foreach Loop Optimization
by upallnight (Sexton) on Aug 01, 2007 at 16:13 UTC | |
by dogz007 (Scribe) on Aug 01, 2007 at 16:25 UTC |