Thread Such (Hash, Array) (17 answers)
Opened by mikey_b at 2010-03-15 20:26

mikey_b
 2010-03-15 20:26
#134897 #134897
User since
2010-03-15
21 Artikel
BenutzerIn
[default_avatar]
Hi all,

Ich möchte folgendes Problem lösen:

Ich habe ein Textdatei: jede Zeile besteht aus ein Wort und seine Frequenz.
Example.txt -> das ich als hash mit key value betrachte

sunny 2
hot 3
mild 1
windy 2
rainy 5

Dann habe ich eine weitere Textdatei:
Sentences.txt

sunny hot mild
sunny windy mild
rainy mild

Ich will beide Texte vergleichen:
mit dem Code:
foreach $key in %hash
foreach zeile in Sentences.txt
if $key exists in zeile
dann print corresponding value of this key
else
print 0

Meine Ausgabe soll dann so für Sentences.txt so aussehen:

2,3,1,0,0
2,0,1,2,0
0,0,1,0,5

Brauche Hilfe. kann mir jemand helfen das code zu realisieren

Gruß, Mikey

View full thread Such (Hash, Array)