Thread Hashes auslesen! (5 answers)
Opened by bandchef at 2014-05-05 09:09

bandchef
 2014-05-05 09:09
#175203 #175203
User since
2014-05-05
15 Artikel
BenutzerIn
[default_avatar]
Hi Leute!

Ich hab folgenden Hash angelegt:

Code: (dl )
1
2
3
4
5
6
$food_color = 	(
Raspberry => "blue",
Apple => "green",
Banana => "yellow",
Cherry => "red"
);


und diesen Hash möchte ich mit dieser foreach-Schleife auslesen:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# food color per the introduction
foreach $name ("Banana", "Martini")
{
if(exists($food_color{$name}))
{
# it exists
print "$name is a food. \n";
}
else
{
# it doesn't
print "$name is a drink.\n";
}
}



Nun ist es aber so, dass mir die foreach-Schleife beim print nix ausgibt. Was ist beim Hash falsch?
Last edited: 2014-05-05 10:37:40 +0200 (CEST)

View full thread Hashes auslesen!