So, I have a file which contains a number of PL/SQL
procedure and function definitions which look like this:
procedure x (x in varchar2,
y in number) is
BEGIN
...
END;
function m (z in number) is
BEGIN
...
END;
And what I would like to do is create a "package header" file.
That is a file which contains the function declaration,
including its arguments. Like so:
procedure x (x in varchar2,
y in number);
function m (z in number);
If someone could remedy my pathetic, pathologically
uninformed desparate hack below, I would appreciate it.
#!/arudev/bin/perl
use strict;
my $file = shift or die "must supply body file";
open F, $file;
my $text = join '', <F>;
my $regex = '(procedure|function).*?\(.*?\)';
while ($text =~ /$regex/gs) {
print "*$1*",$/;
}
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.