I have a variable called $ip_data and when I do 'print $ip_data;' it shows something like this: ARRAY(0x3c353cc4);

Data::Dump gives me the following structure:

[
 {
   ip => "127.0.0.1",
   list => [
     "France",
     "Safari",
   ],
 },
]

I would like to extract ip, country and browser and put it in a hash that looks like this:

%ip_info = (  ip       => '127.0.0.1',
              country  => 'France',
              browser  => 'Safari' );

So far all my attempts to dereference it have failed. As I understand it $ip_data is an array that has a hash for an element, and that hash's first element is a string, but the second is an array holding two string elements.

Am I wrong about it? If so please tell me what's going on here and how to get those elements in %ip_info. Thanks.

link|improve this question
Your desired "destination" hash has one key and that key's value is undef. You want (parens) rather than {curlies} – tadmc Oct 4 '11 at 15:34
Fixed. Thanks tadmc. – Dragi Oct 4 '11 at 15:46
feedback

2 Answers

up vote 3 down vote accepted

$ip_data is a reference to array containing a single element (a hash reference). You can construct your hash like this:

my %ip_info = (
    ip      => $ip_data->[0]{ip},
    country => $ip_data->[0]{list}[0],
    browser => $ip_data->[0]{list}[1],
);

I suggest you to read the perlref manual page to find out more about using references in Perl.

link|improve this answer
Thanks eugene y for the fast response. This upcoming weekend will be my "grok the references or die" weekend :) – Dragi Oct 4 '11 at 14:29
1  
perlreftut has an excellent gentle introduction: perldoc.perl.org/perlreftut.html – friedo Oct 4 '11 at 15:08
feedback

eugene y's answer gives you your specific use case. To learn more read perldoc perlreftut and for the full story perldoc perlref

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.