Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^4: getfile( $filename )

by japhy (Canon)
on Jul 29, 2005 at 12:31 UTC ( [id://479383]=note: print w/replies, xml ) Need Help??


in reply to Re^3: getfile( $filename )
in thread getfile( $filename )

Why not my @result = map scalar(chomp, $_), <$FH>?

Jeff japhy Pinyan, P.L., P.M., P.O.D, X.S.: Perl, regex, and perl hacker
How can we ever be the sold short or the cheated, we who for every service have long ago been overpaid? ~~ Meister Eckhart

Replies are listed 'Best First'.
Re^5: getfile( $filename )
by merlyn (Sage) on Jul 29, 2005 at 16:10 UTC
    First, I wouldn't have expected scalar to take two arguments. True, modern perlfunc pages document this, but it's certainly unexpected to me.

    Second, I dislike modifying $_ in a map, because I believe a map to be applicative, not side-effect-ish.

    -- Randal L. Schwartz, Perl hacker
    Be sure to read my standard disclaimer if this is a reply.

Re^5: getfile( $filename )
by harleypig (Monk) on Jul 29, 2005 at 18:03 UTC
    I'm not sure how that works, but it seems like the map /(.*)/, <> is more perlish. Also, it's shorter.
    Harley J Pig
Re^5: getfile( $filename )
by greenFox (Vicar) on Aug 03, 2005 at 07:55 UTC

    Why not my @result = map scalar(chomp, $_), <$FH>?

    That use of scalar gives me the creeps! Isn't this equivalent and less obfuscated?

    my @result = map {chomp; $_} <$FH>;

    Update: or for that matter whats wrong with chomp(my @result = <$FH>);

    --
    Murray Barton
    Do not seek to follow in the footsteps of the wise. Seek what they sought. -Basho

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (8)
As of 2024-04-23 10:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found