in reply to suffix and hash string

Using grep might make your code more perlish:
print $_,"_",$table{$_},"\n" for grep { $table{$_} eq "A" } keys %tabl +e;

Replies are listed 'Best First'.
Re^2: suffix and hash string
by rawatabhishek23 (Initiate) on Nov 07, 2010 at 10:52 UTC
    That's great Thanks!! I have started Perl 4days back and I am loving it.