in reply to re-using a hash reference (was: Mar)

Or you could put it in a temp variable:
my $temp; $temp = $hash1->{'a'}->{'b'}->{'c'}; $hash2->{'bob'} = $temp if defined $temp;
... which probably saves time digging around in your hash if it's a big'un.

§ George Sherston