DEVFYI - Developer Resource - FYI

How to read file into hash array ?

Perl Questions and Answers


(Continued from previous question...)

How to read file into hash array ?

 
open(IN, "<name_file")
  or die "Couldn't open file for processing: $!";
while (<IN>) {
  chomp;
  $hash_table{$_} = 0;
}
close IN;

print "$_ = $hash_table{$_}\n" foreach keys %hash_table;

(Continued on next question...)

Other Interview Questions