in reply to Re: Re: to perl or not to perl
in thread to perl or not to perl
reads better than@foo = grep {$_ =~ /qux/} @bar;
It doesn't mean you should always use implicite variables, far from that. But never using them is like writing shell scripts without using pipes.@foo = grep {/qux/} @bar;
-- Abigail
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: to perl or not to perl
by chumley (Sexton) on Jun 10, 2001 at 07:44 UTC |