my @keep; for (my $i = 0; $i < @array; $i++) { my $_ = $array[$i]; push @keep, $i unless $_ eq 'hello'; } @array = @array[@keep];