Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^4: next unless - doesnt work?

by jeanluca (Deacon)
on Apr 28, 2012 at 16:18 UTC ( [id://967829]=note: print w/replies, xml ) Need Help??


in reply to Re^3: next unless - doesnt work?
in thread next unless - doesnt work?

not strange? when you think about it, it is strange! :)

Replies are listed 'Best First'.
Re^5: next unless - doesnt work?
by thomas895 (Deacon) on Apr 28, 2012 at 20:49 UTC

    "Strange" is relative. If you come from another programming language, say PHP, then it may seem strage at first. But when you think about it, it actually makes perfect sense, since it makes the distinction between number- and string comparisons much clearer.
    Although, if you really wanted to, you could probably overload == to do string comparisons as well.

    ~Thomas~
Re^5: next unless - doesnt work?
by eyepopslikeamosquito (Archbishop) on Apr 28, 2012 at 22:10 UTC

    Not strange if you came from Unix shell, which also uses different operators for numeric versus string comparison. :)

    Some background as to why Perl has string and numeric operators can be found in Modern Perl in the "Numeric, String, and Boolean Context" section on page eight:

    In exchange for not having to declare (or at least track) explicitly what type of data a variable contains or a function produces, Perl offers specific type contexts that tell the compiler how to treat a given value during an operation ...

    The eq operator treats its operands as strings by enforcing string context on them. The == operator imposes numeric context ...

    Perl will do its best to coerce values to the proper type depending on the operators you use. Be sure to use the proper operator for the type of context you want.

    This issue was discussed in gory detail a month ago in: Definition of numerically equal and rationale for 'you' == 'me'.

Re^5: next unless - doesnt work?
by ikegami (Patriarch) on Apr 30, 2012 at 19:35 UTC

    I don't get it? Why is it strange?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (7)
As of 2024-04-24 00:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found