Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: File::Find and $_ in the wanted sub

by ikegami (Patriarch)
on Jun 04, 2010 at 20:04 UTC ( [id://843195]=note: print w/replies, xml ) Need Help??


in reply to File::Find and $_ in the wanted sub

If you want something in $_, put it in $_.

#!/usr/bin/perl testy() for 'i am a nice parameter'; sub testy { print "$_\n"; }

I used for to assign in order to $_ to protect the previous value of $_. Clobbering your caller's $_ is a bad idea.

Replies are listed 'Best First'.
Re^2: File::Find and $_ in the wanted sub
by rastoboy (Monk) on Jun 04, 2010 at 20:28 UTC
    So... $_ here is essentially a global variable the sub is accessing?
      yes, $_ is a global variable
      Yes, you're accessing the same $_ everywhere. So, by definition, it's a global.

      Only, it temporarily gets a new value before the call to your sub, and it gets restored to its old value afterwards.

      One way to that yourself is by using

      local $_;
      or
      local $_ = 'temporary value';
      which makes a copy of your value; or, as ikegami wrote in another reply, using for/foreach:
      foreach('temporary value') { # your code }
      which will loop exactly once, with $_ set to an alias of the value (meaning it's a different name for the same value, change the variable and the value will follow (or, for a constant, it might protest against the attempt to change a read-only value).

Log In?
Username:
Password:

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

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

    No recent polls found