http://qs1969.pair.com?node_id=474765


in reply to Re^4: compare two text files
in thread compare two text files

The problem is, you have to include the option modifier 'i' to ignore case. Because in your gen.txt file 'AT' is present and in search file 'at' is present.

@result = grep/\Q$a\E/i, @sea;

Now it will work fine.

Prasad