Hello Monks )) There is a piece of code:
$Hash{44.52}{param1}{key1} = [101.01,'val1']; $Hash{95.01}{param2}{key2} = [101.02,'val2'];
I want to check if $Hash{80.0}{param1}{key1} exists and contains a value so that 80.0 DOES NOT appar in keys %Hash. So I do:
my $neededVal = 80.0; if (defined $Hash{$neededVal}{param1}{key1}) { print "DEFINED"; } else { for (keys %Hash) { print "$_\n"; #this prints 80.0 as a KEY (among the others)!!! How?.. } }
So does anyone know how to check if a hash value by a particular key exists WITHOUT appearing of this key in (keys %Hash) ? Thanks in advance UPD Thanks everyone! :) When I state no autovivification at start - all ok!

In reply to Checking if hash value exists without implicitly defining it by Doctrin

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.