Can somebody tell me what is wrong with this code:
I'm expecting something like:
Isn't key suppose to return the list of the keys? like a "string" array?
Thanks for you help.
Code:
my @recognisedTags = keys %tmpTagGeneralLists ;
foreach my $i (@recognisedTags) {
print $i ;
}
I'm expecting something like:
but it cames with:<a><b><br><hr>
HASH(0x1a53a04)HASH(0x1a53a04)HASH(0x1a53a04)HASH(0x1a53a04)HASH(0x1a53a04)
Isn't key suppose to return the list of the keys? like a "string" array?
Thanks for you help.