Thanks so much for your quick reply. Sorry it took me so long to get back. I had made a few mistakes, and it doesn't take much to screw up a RegEx. I put in a bit more detail, like capturing the fucntion name and parameters. A bit more screaming at it until a slash turned into a backslash, and it finally worked.

use strict; undef $/; while (<DATA>) { print; / ( #Start capture ( #Start Sub descript header '-{20,} #start '------ delimiter (\n'[^\n]*?)+\n #middle of header '-{20,}\n #end '------ delimiter )? #End Sub header (optional) (Private\s|Public\s|Friend\s)? #Scope (optional) (Static\s)? #Static (optional) (Sub\s|Function\s) #Sub or Function (mandatory) (\w+) #Sub name ( #Start Params \( #Left paren ([^\)])* #Optional params inside \) #Right paren )? #End Params (optional) \s+ #Space ((?!Lib\s)) #no Lib on line ([^\n]+) #more stuff on same line unless "Lib +" (.*) #and the rest of the file ) #End capture /sx; }; __DATA__ Private thingy as String Private Declare Function DeleteFile Lib "kernel32" Alias "DeleteFileA" '----------------------------------------------------------- ' This is a header '----------------------------------------------------------- Private Function foo(byVal x as Long, byVal y as String) as Integer

It correctly ignores the first three lines and starts capturing at the '-----------. Thanks!


In reply to Re^2: lookahead, lookbehind, ... I'm lost by ExReg
in thread lookahead, lookbehind, ... I'm lost by ExReg

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.