in reply to Deleting hash entry
%hash = ( abc => { def => 1, }, ghi => { jkl => 1, }, ); [download]
delete($hash{abc}{def}); [download]
- Tom