Help for this page
print unless /\babc\b/;
print if /(?<!abc )nevermind/;
my @words = grep !/^abc\z/, split; print "@words";