You should first start by using the right kind of quotes. @ is going to interpolate within double quotes, as the sigil of an array. You need single quotes that don't trigger interpolation. Then, you could use the substitution operator like this:

my $email = 'dummy@dumdum.com'; $email =~ s/\@/\\@/; print $email, "\n";

...could... but there's another way too. quotemeta will "escape" any nonword character. While this does include @, it also includes . (dot). That may or may not be a problem for you. You'll have to decide.

Further reading: Interpolation within quotes is discussed in excellent detail in perlop. The substitution operator is also discussed in perlop, as well as perlre and perlretut.


Dave


In reply to Re: How do I find "@" in a string variable? by davido
in thread How do I find "@" in a string variable? by dbdiaz

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.