Let me see if I can correctly rephrase the question, to make sure I understand:
I need to place  <para> ... </para> tags around every line of a file, except when the line happens to contain a  <title> tag. The code I've tried is:
s/(?!<title>(.*?)\n/<para>$1<\/para>/isg;

If I have that right, you don't really need negative look-ahead. You just need to have a conditional statement that controls whether or not the regex substitution applies -- in fact, you don't really need a regex substitution at all.

Since you say that the file is composed of lines, and the tags are supposed to be added on every line (except any with a "title" tag), it will be easier to handle the data line-by-line, rather than in a single "slurped" scalar:

while (<>) { if ( not /^<title>/ ) { chomp; $_ = "<para>" . $_ . "</para>\n"; } print; }
(update: added ^ anchor to the regex, because the question mentioned looking for that tag at the start of a line)

In reply to Re: Negative look ahead by graff
in thread Negative look ahead 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.