Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Why is $a.$b not = "$a$b"?

by tybalt89 (Monsignor)
on Jul 14, 2020 at 23:30 UTC ( [id://11119328]=note: print w/replies, xml ) Need Help??


in reply to Why is $a.$b not = "$a$b"?

Precedence

$a.($b =~ /C/)

Replies are listed 'Best First'.
Re^2: Why is $a.$b not = "$a$b"?
by tel2 (Pilgrim) on Jul 15, 2020 at 00:08 UTC
    Thank you tybalt89!

    Good answer!  Short, but good.

    To expand on that, Perl's operator precedence has '=~' higher than '.'.
    So to get the '.' notation to work as I want it to, I assume I should (parenthesise) it, like this:

    $ perl -e '$a="A";$b="B";print "Matches!\n" if ($a.$b) =~ /A/' Matches! $ perl -e '$a="A";$b="B";print "Matches!\n" if ($a.$b) =~ /C/'
    'eq' is lower than both of those, which explains why my 'eq' tests worked as I expected.

    Right?

Log In?
Username:
Password:

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

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

    No recent polls found