Hi Thomas,
Thanks for your reply.
I want to accomplish some thing like this...
%hash = (
"abc" => "mallik",
"xyz" => "arjun",
"mno" => "priya"
);
Need be changed to
%hash = (
"123" => "mallik",
"243" => "arjun",
"532" => "priya"
);
The key value abc is changed to 123 and so on..
Hope my requirements are clear now.
Any help in this regard is greatly appreciated.
Thanks & Regards,
Mallik
-----Original Message-----
From: Thomas B�tzler [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 08, 2005 11:50 AM
To: '[email protected]'
Cc: 'Mallik'
Subject: RE: How to change the value of a Hash Key
Mallik <[EMAIL PROTECTED]> asked:
> I have a below hash (printed using Dumper).
[...]
> Here, the key is 'Technologies':'Optical':'Dense Wavelength
> Division Multiplexing (DWDM)'.
>
> Now, I want to replace it with something like 'abc'.
>
> Any pointers on this?
Did you mean something like this?
$hash{'bar'} = $hash{'foo'};
delete $hash{'bar'};
HTH,
Thomas
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>