up vote 0 down vote favorite
share [g+] share [fb]
  my %geo_location_map = (
                             US => [ 'US', 'CA' ],
                             EU => [ 'GB', 'ES' ],

                           );
   $location= "US" ;
   my $goahead = 0;

    if (exists  $geo_location_map{US} ) {
    print "exists";
        my @glocation =  $geo_location_map{US};

    foreach @glocation { 
        if ( $_ eq "$location"} { $goahead=1; last;}  
        }
    }

I tried its not working

link|improve this question

Please bee more specific about what is "not working". What happens, vs. what do you want to have happen? Also, you must always use strict; use warnings; in your scripts, if you wish to have perl report errors to you. – Ether Jul 29 '10 at 16:14
feedback

2 Answers

up vote 4 down vote accepted

$geo_location_map{US} contains an array reference; if you want to copy the array to @glocation you need to dereference it:

my @glocation = @{$geo_location_map{US}};
link|improve this answer
feedback

First of all, always "use strict" in your scripts. You had multiple errors. see :


my %geo_location_map = (
    US => [ 'US', 'CA' ],
    EU => [ 'GB', 'ES' ],
);
my $location= "US" ;
my $goahead = 0;

if (exists  $geo_location_map{US} ) {
    print "exists";
    my @glocation =  $geo_location_map{US};

    foreach (@glocation) {

        if ( $_->[0] eq "$location") {
            print "ahead\n";
                        $goahead=1;
            last;
        }
    }
}



As jim davis said, you had ann array ref. Moreover, some bracket errors, no big deal

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.