I dont know whether i understood the OP question correctly or not. I have written a snippet which will change all the "that" in keys/values to "them". Correct me if i am wrong.

Added some more elements in to that hash for navigational purpose.

#!/usr/bin/perl -w use strict; use Data::Dumper; my $this = {'data'=>{}, 'name'=>'this'}; my $that = {'name'=>"that", 'value'=>"123"}; $this->{data}->{ $that->{'name'} } = $that; $this->{data}->{that}->{abc}->{that}="them"; $this->{data}->{abc}->{that}->{that}->{that}->{abc}->{that} = "them"; $this->{data}->{abc}->{that}->{that}->{that} = "abc"; print Dumper $this; my $struct = &change($this,"that","them"); print Dumper($struct); sub change { my ($struct,$input,$output)=@_; if ((ref $struct)=~/HASH/){ foreach my $t (keys %{$struct}) { if (ref $struct->{$t}) { if ($t eq $input) { my $k = $struct->{$t}; $struct->{$output}=$k; delete $struct->{$t}; &change($struct->{$output},$input,$output); } &change($struct->{$t},$input,$output); } else { $struct->{$t} = $output if ($struct->{$t} eq $input +); if ($t eq $input) { my $k = $struct->{$t}; $struct->{$output}=$k; delete $struct->{$t}; } } } } return $struct; }

Regards,
Murugesan Kandasamy
use perl for(;;);


In reply to Re: Dynamic hash keys by murugu
in thread Dynamic hash keys by markdibley

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.