Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^2: Symbolic references

by Anonymous Monk
on Apr 15, 2013 at 05:31 UTC ( [id://1028677]=note: print w/replies, xml ) Need Help??


in reply to Re: Symbolic references
in thread Symbolic references

You've partially lost me with that answer.

What if I may have a variable number of variables..
program.pl var1 program.pl var1/var2 program.pl var1/var2/var3
etc? Is there a programatic way to read N variables into the reference?

Replies are listed 'Best First'.
Re^3: Symbolic references
by LanX (Saint) on Apr 15, 2013 at 05:53 UTC
    I've changed my code to be less terse and hopefully better understandable step by step.

    > What if I may have a variable number of variables..

    you can put a unlimited anount of elements into '$path' and it will work as long as the intermediate values really exist within the nested hashes (otherwise the result is undef).

    > Is there a programatic way to read N variables into the reference?

    ??? what do you mean here with "reference"?

    Cheers Rolf

    ( addicted to the Perl Programming Language)

      I used the wrong word 'reference' it should have been variable. I've tried to impliment your code below, but I'm still lost...
      foreach $argnum (0..$#ARGV){ print "$ARGV[$argnum]\n"; my $path=$ARGV[$argnum]; @path=split /\//,$path; $node=node->{$_} for @path; print $node; } print "\n"; }
        got it! phew!
        foreach $argnum (0..$#ARGV){ $node=$ret; print "$ARGV[$argnum]\n"; @path=split /\//,$ARGV[$argnum]; print Dumper @path; #debugging helps! $node=$node->{$_} for @path; print $node; } print "\n"; }
        Thanks!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-04-25 20:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found