in reply to Re: adding text from different txt file into hash
in thread adding text from different txt file into hash

similar
use File::Slurp; my %h; @h{map{chomp;$_}read_file("test1.txt")}=(map{chomp;$_}read_file("test2 +.txt"));


holli, /regexed monk/