Why go to all the trouble of making \$'s? All you need to do is match correct variables. A swap like the following would help (this assumes that you probably won't -- and shouldn't for that matter -- use pattern match memories in your stagnant test ala $1,$2,$3 -- this behaviour is awfully magic and difficult to read).
$Data =~ s/(\$[a-z\_]\w*)/eval($1)/egi; </pre> Don't worry, this is still secure even with the eval. If your brave, why not also include hashes and arrays in your swaps li +ke the following: <pre> $Data =~ s/(\$[a-z\_][\w\{\}\[\]]*)/eval($1)/egi;
This isn't strict in the match but it will catch most things like $A{B} and so on. Both of these don't even touch values that look like $6.00.

In reply to Re: regexp trouble... by Rhandom
in thread regexp trouble... 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.