Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re^2: How to make sure no elements from @array are inside $scalar

by tadegenban (Novice)
on Nov 15, 2014 at 08:55 UTC ( [id://1107290]=note: print w/replies, xml ) Need Help??


in reply to Re: How to make sure no elements from @array are inside $scalar
in thread How to make sure no elements from @array are inside $scalar

Can I use

 $text=~/_9(...)/ and none {$1 eq $_} @$sites

instead of

 $text=~/_9(...)/,none {$1 eq $_} @$sites

here ?

What's the difference between 'and' and 'comma' here

Replies are listed 'Best First'.
Re^3: How to make sure no elements from @array are inside $scalar
by Loops (Curate) on Nov 15, 2014 at 11:48 UTC

    Yes, you can use "and" to much the same effect in this case. In fact it would stop a warning if the match failed and $1 was left undefined. And that's because the comma operator does not short circuit as "and" does; both expressions will be evaluated whether the first is true or false. But it can be useful.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (5)
As of 2024-04-25 14:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found