in reply to Returning a hash and looping on the results.
The value associated with the key is an array reference, and sopush @{ $no_name_found { $user_name } }, $city;
will output something that looks likemy $value = $result->{$key}; print "User Name = $key - City: $value\n";
You might get something closer to what you expect withUser Name = User - City: ARRAY(0x3eafa1c)
ormy $value = $result->{$key}; local $" = ', '; print "User Name = $key - City: @$value\n";
or something similar.my $value = $result->{$key}; print "User Name = $key - City: ", join(', ', @$value), "\n";
#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.
|
|---|