This is vague and contradictory. Please read "How do I post a question effectively?" and "SSCCE". Most of what follows is pure guesswork in terms of what you actually need.

Use of non-interpolating quotes would normally suffice:

$ perl -Mstrict -Mwarnings -E 'my ($u, $p) = (q{W$X}, q{Y@Z}); say for + $u, $p' W$X Y@Z

Use of interpolating quotes would normally cause problems:

$ perl -Mstrict -Mwarnings -E 'my ($u, $p) = (qq{W$X}, qq{Y@Z}); say f +or $u, $p' Possible unintended interpolation of @Z in string at -e line 1. Global symbol "$X" requires explicit package name (did you forget to d +eclare "my $X"?) at -e line 1. Global symbol "@Z" requires explicit package name (did you forget to d +eclare "my @Z"?) at -e line 1. Execution of -e aborted due to compilation errors.

See also quotemeta.

What you wrote about the "URI::escape" and (later) "uri_escape" doesn't make much sense. URI has neither an escape() function nor a uri_escape() function; URI::Escape has the latter. Even my best guess at fixing typos doesn't help:

$ perl -Mstrict -Mwarnings -E 'use URI::Escape; my ($u, $p) = (q{W$X}, + q{Y@Z}); say for uri_escape($u), uri_escape($p)' W%24X Y%40Z

We'll need some clarification on what you're actually doing here.

— Ken


In reply to Re: Escape user name and password in LWP proxy call. by kcott
in thread Escape user name and password in LWP proxy call. 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.