I think I prefer toolic's computation of  $key as a separate step (more readable/maintainable), but if you really need it all in one statement:

c:\@Work\Perl>perl -wMstrict -le "my $v = { R3R3_foo_IF => 'xyzzy', R3R3_bar_IF => 'wibble', }; ;; my $pic = 'foo'; ;; print qq{whatever $v->{ qq{R3R3_${pic}_IF} } and so on}; " whatever xyzzy and so on
(Note that I use  qq{...} instead of  "..." only to avoid distracting  \ escapes on the Windows command line.)

Update: The trick is to realize that  $v->{ qq{R3R3_${pic}_IF} } is really  $v->{ EXPR } where EXPR is any expression whatsoever (but not a statement). So  $v->{ qq{R3R3_${pic}_IF} } evaluates to a scalar which is double-quote-ishly interpolated as usual.


Give a man a fish:  <%-{-{-{-<


In reply to Re: variable inside hash key by AnomalousMonk
in thread variable inside hash key by Anonymous Monk

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.