1 2 3
while (<$file_handle>) { print unless /suchwort/; }
1 2 3 4
my $string = join "\n", grep !/suchwort/, split /\n/, $string;