Hi All,

I have problem with the regular expression while using the substitution operator.

$str1 = "accessagain"; $str2 = "@cce$$ag@!n"; $abc1 = "accessagain"; $abc2 = '@cce$$ag@!n'; $str1 =~ s/$str1/$str2/ ; $abc1 =~ s/$abc1/$abc2/ ; print " New String : $str1 : $abc1 \n";
Prints the output as
=> 18203@!n : @cce$$@g@!n
The problem is that when I have special characters in the variable and try to substitute the variable it is getting interpolated and thinking it as a perl variable.

I need to escape the special characters in the variable and it should be replaced. Actually my main requirement is that I am storing user passwords in a file for a small web-application in encrypted format.

When the user needs to update his password and use some special characters in it. The record is not getting updated since I am using the same above logic i.e the substitution operator to replace the existing record with the new record.

Is there any way to escape the special characters in the variable.

Please help me out in this regard. Thanks In Advance.

Sushil Kumar

In reply to Escape the special characters while substitution by msk_0984

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.