Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^2: Assign & substitute in one statement?

by Aragorn (Curate)
on Jun 14, 2004 at 11:23 UTC ( [id://366499]=note: print w/replies, xml ) Need Help??


in reply to Re: Assign & substitute in one statement?
in thread Assign & substitute in one statement?

Sure, just write parens in their precedence-adjusting role
...and their list context inducing role.

Arjen

Update: edan is right. I was thinking about the m// operator which does return the matched subexpressions in list context.

Replies are listed 'Best First'.
Re^3: Assign & substitute in one statement?
by edan (Curate) on Jun 14, 2004 at 12:44 UTC

    I had to think about it for a minute, and reread parts of the perlop manpage, but Zaxo is right, and you're wrong. Sorry.

    The s/// operator always returns the number of substitutions made, regardless of context. The parentheses here are indeed adjusting the precedence, because normally the =~ operator binds more tightly than assignment operators, = in this case. That's why without parens you first do the substitution, then assign the result to the variable. Putting the parens around the assignment forces that to happen first. In comes the handy lvalue property of assignment, so modifying the assignment with =~ has the effect of modifying the left-hand argument of the assignment. In the words of perlop:

    Modifying an assignment is equivalent to doing the assignment and then modifying the variable that was assigned to.

    --
    edan

Log In?
Username:
Password:

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

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

    No recent polls found