Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Declaring Variables

by perlmonkey (Hermit)
on Feb 28, 2001 at 07:50 UTC ( [id://61278]=note: print w/replies, xml ) Need Help??


in reply to Declaring Variables

I am NOT suggesting this, but I thought I would chime in. You can modify the stack paramaters directly:
use strict; sub test { if( $_[0] =~ /regex/ ) { $_[1] = "match"; } else { $_[1] = "no match"; } } my $bool; test( "foo", $bool ); print "foo: $bool\n"; test( "regex", $bool ); print "regex: $bool\n";
That is just silly though. Use the 'vars' method mentioned above or just have your subs return a value instead of setting a global variable if that is possible.

You can also encapsulate a my'd variable and make it semi global via subroutine calls, but this is sort of silly also:
use strict; { my $foo; sub setFoo{ $foo = shift; } sub getFoo{ return $foo; } }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (7)
As of 2024-04-18 07:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found