Thread array im hash (30 answers)
Opened by Free Faq at 2004-03-12 21:27

Free Faq
 2004-03-12 21:27
#80917 #80917
User since
2003-09-10
141 Artikel
BenutzerIn
[default_avatar]
Ich lerne gerade Hashes lieben :D
Nur hab ich jetzt ein Problem:
Ich will in einem Hash Z.B. $Hash{Array} ein Array abrufen können.
Hab dazu mal ein kleines Testscript geschrieben:
Code: (dl )
1
2
3
4
$Hash{Array}[0] = "abc";
$Hash{Array}[1] = "xyz";
print "content-type: text/html\n\n";
print "$Hash{Array}[1]";

Das funtzt soweit. Nun würde ich aber gern wissen, wieviele Elemente das hash-array hat.
Habs unteranderem mit:
Code: (dl )
print $#Hash{Array};

versucht, aber das will nicht so ganz =)
Andere Frage:
WIe kann ich vereinfachter ein Array in einem hash speichern?
Code: (dl )
$Hash{Array} = @Array;

geht ja nicht.
Haut mich nicht, ich bin ein Noob!

View full thread array im hash