Thread mehrere Fragen u.a. zum topic array²hash (10 answers)
Opened by Gast at 2007-10-04 10:51

guest Gast
 2007-10-04 17:57
#100274 #100274
Ok, klappt. Danke
naechstes extrem mysterioeses Problem:

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
sub verify_files{
  my @correct_hashes = ();

  ## abgeguckt von renee :P aetsch!
  open( FILE, '<', "$whitelist" ) or die "Could not open file: $!";
  while ( my $f = <FILE> ) {
    chomp $f;
    push( @correct_hashes, $f );
  }

  close(FILE);

  print $correct_hashes[0];

}


es gibt aus:

Code: (dl )
1
2
foo2
foo2


Aber ich will doch pro Zeile 1 Element. ich versteh die Welt nicht mehr ...
Also im Element 0: foo2
Im Element 1: foo2

ich verstehs nicht.

View full thread mehrere Fragen u.a. zum topic array²hash