My first piece of advice is "perldoc Test" - a good test harness is an invented wheel.

OTOH that does not solve the problem at hand. And that problem is that the number in the hash has a space in it. The number you are looking up does not.

A stupid way to dump complex data structures is to insert something like this at an appropriate place in your script:

use Data::Dumper; print Dumper(\%PhoneBook);
In this case that will give:
$VAR1 = { ' 9000' => 'Dick ', ' 1234' => 'Harry ', ' 8594' => 'Tom ' };
and you see the space in the number and the return in the name that you probably didn't want.

BTW it is good practice to declare hashes you plan to use as global data with "use vars".

As always, /tell tilly if you have questions about this.


In reply to Re: Data extraction from hash problem by tilly
in thread Data extraction from hash problem by dmtelf

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.