in reply to Re: Can not print hash element
in thread Can not print hash element

Thank you very much. You have sharp eyes. It's fixed.

Replies are listed 'Best First'.
Re^3: Can not print hash element
by tinita (Parson) on Sep 23, 2008 at 18:24 UTC
    Another opportunity to promote Data::Dumper =)
    use Data::Dumper; local $Data::Dumper::Useqq = 1; # print non-printable chars print Dumper \%table;

    So, whenever perl seems to be wrong, first debug yourself what data you have.