Hi monks, I am facing a little difficulty in this simple piece of code. Let me just tell you what I am trying to do. I have a hash reference
$result<code>which has the following data <code> $VAR1 = { 'serviceIdList' => { 'serviceId' => [ '3', '4' ] } }; <code> Now how i got that is by executing this statement <code>print Dumper $result;
Now for all the value in the array ref serviceId, I would like to call a function getServiceType which takes serviceId as the argument. This function again returns a hash ref, say, when I pass serviceId=3 as argument, I get a hash ref which contains the following data
$VAR1 = { 'serviceType' => '9', 'maxNrOfRules' => '0', 'defaultRule' => '0' };
Now, the code should be able to check if serviceType is equal to 9, then it should immediately exit, else it should continue for all the elements in the array ref. In case, my scenario is not clear, please let me know. Your help is highly appreciated. Thanks and regards

In reply to dereferencing array ref in a hash ref by akagrawal3

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.