Basically, you want a templating system. If you want to keep using the Perl hash syntax, I recommend the following approach:

my %act1 = ( "food" => "eat it", "drink" => "drink it", "Perl" => "play it"); my %act2 = ( "food" => "prepare it", "drink" => "be drunk", "Perl" => "write it"); my %actions = ( act1 => \%act1, act2 => \%act2, ); my %vars = ( item => \$item, ); my $out = '-p $act1{$item} -p $act2{$item} -p ... '; # resp. read that one from a file # The world's simpled templating system: $out =~ s-\$(\w+) # the name of the hash (%act1) \{ # opening brace \$(\w+) # the name of the variable to be used ($item) \} # closing brace - { my $useritem = $vars{ $2 }; $actions{$1}{$useritem} }gxe;

I haven't tested the code, so likely there are some syntax errors and errors with the specification of the regular expression - I hope that the comments help you enough to fix these.


In reply to Re: Interpolation of variables read from a file by Corion
in thread Interpolation of variables read from a file by phio

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.