in reply to hash name not sticking?
This line tells me you're using $hash as a reference to an anonymous hash.push @{$hash->{$1}->{$2}}, $try->param($string);
to this:<P> then you have:<BR><P>$hash{12}{1}
You just forgot to dereference. If you want to print anything meaningful (i.e. not ARRAY(0x812cd54)), you'll have to dereference it some more.<P> then you have:<BR><P>$hash->{12}->{1}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Re: hash name not sticking?
by jptxs (Curate) on Sep 05, 2000 at 00:50 UTC |