Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

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":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-04-19 07:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found