Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Returning a hash and looping on the results.

by kennethk (Abbot)
on Apr 18, 2014 at 14:46 UTC ( [id://1082778]=note: print w/replies, xml ) Need Help??


in reply to Returning a hash and looping on the results.

push @{ $no_name_found { $user_name } }, $city;
The value associated with the key is an array reference, and so
my $value = $result->{$key}; print "User Name = $key - City: $value\n";
will output something that looks like
User Name = User - City: ARRAY(0x3eafa1c)
You might get something closer to what you expect with
my $value = $result->{$key}; local $" = ', '; print "User Name = $key - City: @$value\n";
or
my $value = $result->{$key}; print "User Name = $key - City: ", join(', ', @$value), "\n";
or something similar.

#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1082778]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-19 16:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found