in reply to Re^2: Help Using Split and Arrays
in thread Help Using Split and Arrays
See Foreach Loops in the Perl documentation.my @samples= ('a,b,stuff', 'b, c , more stuff'); foreach my $line (@samples) { # work with $line here }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Help Using Split and Arrays
by burningredmoon (Novice) on Apr 24, 2011 at 16:45 UTC |