Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Re: Re: getting 0 to print

by Arien (Pilgrim)
on Jan 14, 2003 at 00:08 UTC ( [id://226656]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: getting 0 to print
in thread getting 0 to print

I have never seen this ...

$_ = "" => next unless defined;

... before. Could you explain how that works.

I'm not sure what part puzzles you, so...

  • defined implicitly refers to $_.
  • unless (...) { ... } can be written as ... unless ... if the block is just a simple statement.
  • ... => ... is another way to write ... , ... (apart from the fact that => will autoquote any word left of it).
  • In scalar context (ie the way used here) the comma (in either notation) evaluates its both arguments from left to right (and returns the value value of the last argument evaluated).

(You can find all details in perlsyn and perlop.)

In other words, that line is just one of the many variations of writing:

unless (defined $_) { $_ = ""; next }

— Arien

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (None)
    As of 2025-01-13 09:42 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?
      Which URL do you most often use to access this site?












      Results (28 votes). Check out past polls.