![]() |
|
Perl Monk, Perl Meditation | |
PerlMonks |
Re^3: Returning Arrayby MidLifeXis (Monsignor) |
on Jun 27, 2012 at 14:23 UTC ( #978678=note: print w/replies, xml ) | Need Help?? |
Replace the return with a function (push, unshift, splice, as examples) that builds up a temporary array that you return. I would probably build it in two parts -- one that iterates over all of @data, one line at a time, and the other part that handles one line at a time. I might even put the part that iterates over @data back into the code that is calling your sub (perhaps with map or something similar). Your code is basically selecting a group of lines, and then transforming them. To me that says something along these lines (see grep and map):
--MidLifeXis
In Section
Seekers of Perl Wisdom
|
|