I have a Perl script that is being deployed at several different sites. To allow each site to customize the appearance of the HTML generated, I have an INI file with a number of NAME=VALUE pairs. What I'm wondering is if there is a way to assign a value to a variable name that is stored in a variable. For example, if I have the following in my INI file:

$NAME=John Smith

I'd like to be able to read $NAME into $var1 and John Smith into $var2, and then assign what's in $var2 to the variable name stored in $var1.

I can currently work around this. Here is my script thus far:

sub read_ini() { my @file = read_file("recorder.ini"); my $line = 0; my $pos = 0; my $var = ""; my $val; for(@file) { if(substr(@file[$line],0,1) ne "#") { $pos = index(@file[$line],"="); if($pos > 0) { $var = substr(@file[$line],0,$pos); $val = substr(@file[$line],$pos + 1, length(@file[$line]) - $pos); if($var eq "NAME") { $NAME = $val; } elsif($var eq "OFFICE") { $OFFICE = $val; } # And so on for other instances } } $line++; } }

Can I use a hash to accomplish what I described above? I'm sorry for sounding ignorant, but I'm still new to Perl.

Thanks!


In reply to Reading from an INI file by MrCromeDome

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.