I am not really sure what the output you want is? Can you give an example of what you want the output to be?

do you want to capture the newline? skip it? if you want to match whether it is there or not you could try :

while ($section =~ m|(?:\n)?\=\=\=([a-z0-9_ &\[\]ÀÂÄàâäÇçÉÊÈËéêèëÏÌÎ +ïìîÖÔÒöôòÜÛÙüûùA-Z?!;«»()"\s\-]+)\=\=\=|g) { push @subheaders, $1; }

But this is makes no sense. I think your regex may no longer be working because your $section (the example data given?) is one big string (with \n's) in it.
So doing a global pattern match (m//g) and including ^ to specify only a match at the start breaks your successful pattern because you are not matching against your input line by line (where ^ would be applicable) but as one big string, so it will only match the very start of the string, i.e. the "==Introduction==" bit, regardless of the /g modifier.

Wow, went on a bit there. In short, your pattern is failing because you are matching against a slurp, not line by line, so the ^ breaks your pattern.

This perlfaq might help.

Alternately i have totally missed the point and should pipe down.

Just a something something...

In reply to Re: Regex question - either starts, or has newline prefixing? by BioLion
in thread Regex question - either starts, or has newline prefixing? by ultranerds

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.