in reply to Re: Re: Removing a certain number of hash keys
in thread Removing a certain number of hash keys

This should still work, provided you still want to delete all in a range:
map { delete $hash{$_} if ($_ > 101 && $_ < 103) } keys %hash;

Alan "Hot Pastrami" Bellows