in reply to delete element in Hash of array

splice(@{$hash{'thingy'}},$position,1);

You can always access the array inside a hash of arrays if you put @{} around the hash value $hash{'thingy'}. Quite simple after you get used to it

Replies are listed 'Best First'.
Re^2: delete element in Hash of array
by doubledecker (Scribe) on May 23, 2011 at 11:57 UTC

    Assuming if you know the key you want to delete..

    delete $hash{$key};
      Unfortunately the question is so poorly phrased, that nobody can tell in which nesting level an element should be deleted.

      You're answering another question than jethro did.

      Cheers Rolf