ExReg has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to get the meat off the bones of some .bas, .frm, and .cls VB files. Using a filet_o_bas script, I have slurped the file in to a scalar. What I want to do now is strip off the declarations at the beginning and have just the Subs and Functions left so that I can digest them. Each may have a descriptive header before the Sub/Function declaration set off by dashed lines.
I have the following RegEx so far. The problem is that I do not want it to start capturing with a Sub or Function line that has "Lib" in it, since these are not functions that are written out. They are just aliases to other already existing library functions.
/ ( #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) [^\n]+ #more stuff on same line (?!\sLib\s) #but not if Lib on line .* #and the rest of the file ) #End capture /sx
For example, if I try it on a file having the following portion, I want it to start capturing on line 27. Instead, it starts capturing on line 24.
File header stuf... 22 Private Const strLen = 80 23 24 Private Declare Function DeleteFile Lib "kernel32" Alias "DeleteFil +eA" _ 25 (ByVal lpFileName as String) as Long 26 27 '-------------------------------------------------------- 28 ' Purpose: Donuts 29 ' Author: not me 30 ' Date: yesterday 31 '-------------------------------------------------------- 32 Private Sub DrainBattery(Byval sPercentage as Single) Code stuff...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: lookahead, lookbehind, ... I'm lost
by Corion (Patriarch) on May 06, 2009 at 18:11 UTC | |
by ExReg (Priest) on May 07, 2009 at 16:39 UTC | |
|
Re: lookahead, lookbehind, ... I'm lost
by Roy Johnson (Monsignor) on May 06, 2009 at 18:13 UTC | |
by ExReg (Priest) on May 07, 2009 at 16:42 UTC |