http://qs321.pair.com?node_id=910872


in reply to Re: Perl sorting unique values
in thread Perl sorting unique values

my %hash; open (FILE,"abc.txt"); while (<FILE>) { chomp; my ($key,$val) = split '\|'; print $hash{$val}; }
This is a bit of code which i have written,i did not applied sort on it till now.But,its not working.