Problems:
- The first thing that happens is that the end of the operator is found. The only characters to which the parser pays attention at this stage are «\» and the delimiter(s). This means the first «\» in your selector is taken as the end of operator.
- «\Qq{//div[@id="abc"]}\E» isn't valid Perl code, but it's expected to be when using the «e» modifier.
It might be best to split out the replacement.
my $repl = '//div[@id="abc"]';
s/.../$repl/
The following would also work:
s{...}{ q{//div[@id="abc"]} }e
s{...}{ '//div[@id="abc"]' }e
Changed the delimiter to allow «\» to be used unescaped, and removed «\Q\E».
If you change the replacement expression's delimiter to «'», it will act as a single-quoted string literal instead of a double-quoted string literal.
s{...}'//div[@id="abc"]'
Probably best to avoid this one because it's pretty obscure.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.