Update: I just went back and checked the OP again and finally noticed that, because the OP code assigns to the hash from the output of a  map statement, the code is unquestionably changing all the keys! Consequently, this entire comment is misconceived and should be ignored. Rats. Nevermind...

Nodereaper, please bury my shame.

... requirement ... to change the hash key [to] upper case...
It is not clear to me if this means add an all-upper-case copy of any key that contains any lower case character or if it means add an all-upper-case copy of any key that contains any lower case character and delete the original key. The code of the OP certainly does the former, but, for reasons not clearly stated, that code is unacceptable.

If the latter of the two alternatives given above is needed, the following variation will do the trick. (The first hash operation is shown for demonstration purposes; only the second operation is needed for add-and-delete, i.e., change.)

>perl -wMstrict -MData::Dumper -le "my $hr = { qw(a 1 b 2 c 3 d 4) }; print Dumper $hr; $hr->{ uc() } = $hr->{$_} for keys %$hr; print Dumper $hr; $hr->{ uc() } = delete $hr->{$_} for keys %$hr; print Dumper $hr; " $VAR1 = { 'c' => '3', 'a' => '1', 'b' => '2', 'd' => '4' }; $VAR1 = { 'A' => '1', 'a' => '1', 'd' => '4', 'B' => '2', 'c' => '3', 'b' => '2', 'C' => '3', 'D' => '4' }; $VAR1 = { 'A' => '1', 'B' => '2', 'D' => '4', 'C' => '3' };

In reply to Re: changing the hash key as upper case. by AnomalousMonk
in thread changing the hash key as upper case. by santhosh_89

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.