Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

RE: Load file into a scalar without File::Slurp

by audreyt (Hermit)
on Jul 25, 2000 at 01:25 UTC ( [id://24191]=note: print w/replies, xml ) Need Help??


in reply to Load file into a scalar without File::Slurp

I usually use this Perl Golf-ish subroutine that doesn't require a filehandle:
$contents=slurp('foobar'); sub slurp {local$/=<>if local@ARGV=@_}
or use an in-line block:
{local$/;$contents=<>if local@ARGV='foobar'};
or, if you could afford a filehandle and wasted CPU time:
$contents=join'',<_>if open _,'foobar';
Of course, if this is really a Perl Golf contest entry, I'll probably write:
$contents=`cat foobar`
But it's platform dependent and cheating, so don't do that. :-p

/Autrijus/

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-04-19 20:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found