I don't really advocate what you are doing, better I think to store your vars in a seperate file and read them in at runtime, but if you insist, you could use Inline::Files, which make what your doing fairly trivial.

#! perl -sw use strict; use Inline::Files -backup; BEGIN{ $::name1 = <MY_VARS>; chomp($::name1); $::name2 = <MY_VARS>; chomp($::name2); } print "This time I have $::name1, and $::name2\n"; $::name1 = 'frederica'; $::name2 = 'willamina'; END{ open MY_VARS, '>' or die $!; print MY_VARS "$::name1\n$::name2\n"; close MY_VARS; } __MY_VARS__ fred bill __DATA__ C:\test>202246 This time I have fred, and bill C:\test>202246 This time I have frederica, and willamina C:\test>

Nice things is that the module is tested, proven and has a backup facility (though only one level of backup).

Also, doing this way you don't have to worry about making changes to your code and then having to modify your regexes, or risk forgetting and totally screwing your code.

Using the BEGIN and END blocks makes sure it get done at the right time.


Cor! Like yer ring! ... HALO dammit! ... 'Ave it yer way! Hal-lo, Mister la-de-da. ... Like yer ring!

In reply to Re: substitution in $0 by BrowserUk
in thread substitution in $0 by Discipulus

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.