http://qs321.pair.com?node_id=315064


in reply to Deleting hash entry

I think you meant:
%hash = ( abc => { def => 1, }, ghi => { jkl => 1, }, );
Hashes use (), hash refs use {}.

delete($hash{abc}{def});
should work for deleting a second level key.

- Tom