in reply to Match all words except one

Just negate the match e.g
my @selected_names = grep(!/todd/, @all_names);
Although a comparison might be more appropriate e.g
my @selected_names = grep { $_ ne 'todd' } @all_names;
See. perlop for more info.
HTH

_________
broquaint