Do I need to do my homework and look up references?

Well, since you're using references already, you might as well go ahead and learn how to use them properly, so that you avoid the evil, insanity-inducing idea of interpolating variable names.

I assume you're showing us a toy example that has very little to do with an application where you believe this problem is coming up. But since you didn't say anything about your real application, let's try to see why you think the following approach poses any sort of problem for the inexperienced programmer:

my %hash; my @topkeys = qw/a b c/; my @innerkeys = qw/1 2/; my @values = qw/5.5 3.2 15.0 -22 .02 .15/; for my $k ( @topkeys ) { for my $i ( @innerkeys ) { $hash{$k}{$i} = shift @values; } } print join "\t", (map { sprintf("%.1f",$hash{$_}{1}) } qw/a b c/), "\n +"; # or, if "map" is too tough for the inexperienced: printf( "%.1f\t", $hash{$_}{1} ) for ( qw/a b c/ ); print "\n";

In reply to Re: Interpolating an array element as a hash name. by graff
in thread Interpolating an array element as a hash name. by yam

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.