On Wed, Jan 24, 2001 at 03:17:33PM +0100, Philip Newton wrote:
> %hash = %{{@{$cookies{jobsearch1}{value}}}};
> # who said Perl looks like line noise?
No need to go to all the trouble of making a hashref only to dereference
it.
%hash = @{$cookies{jobsearch1}{value}};
You get slightly less line noise that way.
-dlc
- can't coerce array into hash James Powell
- Re: can't coerce array into hash Philip Newton
- Daniel Chetlin
