Hello I would like to compare a list of keywords (lista) against another list (listb) and see what is not on lista already Any suggestions on how to do this, online software would be great! Cheers Mally
There's an example in the Perl Cookbook that'll do it. You have a list (a) and a list b. You read list a into a hash (seen{$item}=1), and remove them for list b. Then you print out the ones that have seen{$item}=1.