in reply to Re^3: perl array of hashes help
in thread perl array of hashes help

Hi Trizen,

I have one question regarding access of the perl hash key which is an array reference like below i have an hash

 my $all = {'text' => [                                      'HJ0039_x.pdf' , 'HJ0039' , 'HJ0039'                                      ]};

To access the above elements i can use two ways like below

 print " $all->{text}[0] ;

and

 print "${$all->{text}}[0]

can you please explain me clearly what is the difference between the above two methods , without de-referencing the array how we are able to access the array elements

Thanks

Replies are listed 'Best First'.
Re^5: perl array of hashes help
by trizen (Hermit) on May 07, 2013 at 22:41 UTC
    Hello Ragilla,

    The code $all->{text}[0] is equivalent with $all->{text}->[0]. This implies an implicit dereference. Similar with $array_ref->[0].

    In the second code, ${$all->{text}}[0] is similar with $array[0], because $all->{text} is an ARRAY REF, and @{ARRAY_REF} is similar with @array, which can lead to ${ARRAY_REF}[index].