Hi guys/gals. I am somewhat new to PERL and need your help. I am trying to search html files using a proxy filter, insert some code onto the top of each page and then push it to the user's browser. I am using a proxy filter named Privoxy for this. Privoxy uses PERL to match/substitute patterns. The best/cleanest way I have been able to come up with so far is to search for "<body>" and insert a <body>"my stuff"</body> before it. I am using a "forward lookup" for this: (.*(?=<body)) and assigning this value to $1 and then replacing it with $1<body>"my stuff"</body>. I am able to get this to work for 90% of the pages. It won't work on pages that have no <body>. It is also not working on pages like www.gmail.com. Gmail's page starts with a bunch of scripts and then eventually hs a <body> tag. I don't understand why (.*(?=<body)) won't match this pattern. Is there a problem with my logic? Thanks in advance. Sal

In reply to Search and Replace Question by blk97tt

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.