http://qs1969.pair.com?node_id=241150


in reply to Re: XML::Simple and arrays
in thread XML::Simple and arrays

Thank you,

However when I try the above code I get this:
Type of arg 1 to keys must be hash (not hash element)
What does that mean?

Oh and it's on the grep { $_ eq $chk } keys %$rules->{CI}; line

Thanks for the help.

Replies are listed 'Best First'.
Re: Re: Re: XML::Simple and arrays
by arturo (Vicar) on Mar 07, 2003 at 16:29 UTC

    That should be grep { $_ eq $chk } keys %{ $rules->{CI} };, because without the braces, the % deferences the $rules hashref and not the $rules->{CI} hashref.

    See References quick reference for more illumination. HTH!

    If not P, what? Q maybe?
    "Sidney Morgenbesser"