Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Stupid mistakes I repeatedly make

by gam3 (Curate)
on Mar 27, 2005 at 16:07 UTC ( [id://442632]=note: print w/replies, xml ) Need Help??


in reply to Stupid mistakes I repeatedly make

This is simular to the s/// and gets me all the time.
@chomped = map {chomp} @_;
-- gam3
A picture is worth a thousand words, but takes 200K.

Replies are listed 'Best First'.
Re^2: Stupid mistakes I repeatedly make
by tlm (Prior) on Mar 27, 2005 at 17:11 UTC

    Then toss map and open up your life to the "listable" form of chomp:

    @chomped = @_; chomp @chomped; # yum-yum

    the lowliest monk

      Or even better: chomp (my @chomped = @_);
      --kap
        Oh the logic! This one is so beautiful and ugly it makes me want to cry.

        $will->code for @food or $$;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://442632]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (6)
As of 2024-04-25 10:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found