Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Perl is psychic?!

by KM (Priest)
on Mar 06, 2001 at 05:13 UTC ( [id://62403]=note: print w/replies, xml ) Need Help??


in reply to Perl is psychic?!

Yes, Perl is psychic... but not in this case. If you look at perlvar you will see:

 $&      The string matched by the last successful pattern
               match (not counting any matches hidden within a
               BLOCK or eval() enclosed by the current BLOCK).
               (Mnemonic: like & in some editors.)  This variable
               is read-only and dynamically scoped to the current
               BLOCK.

So, since .* matched 'foo', $& is set when you use it. If you make your pattern /\d.*/ you will find you will get no output in your same test case.

(root@frodo):/tmp>
# cat t.pl
'foo' =~ m/\d.*/;
print eval <STDIN>;
(root@frodo):/tmp>
# perl t.pl
$&
(root@frodo):/tmp>
#

Cheers,
KM

Log In?
Username:
Password:

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

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

    No recent polls found