It's not easy to do this with regexes. You could do something like:
my $bal; $bal = qr /[(]((?:(?>[^()]+)|(??{$bal}))*)[)]/; my $func = qr /([a-zA-Z]\w*)\s*$bal/; while (<>) { while (/$func/g) { print "Name: $1; arguments: $2\n" } }

but that doesn't find all of them either. Beside the obvious problem of iterating over the lines (thus failing to find calls spanning a newline), it will report keywords that are followed by parens, like if and while. It won't find recursive calls, for instance, if you have

foo (bar ())
it will only report foo, and not bar. But the program will truly go haywire on calls like:
foo ("("); bar (")))");
. Comments are great fun too:
/* This works (really!) */
With great effort, this might be fixable, but why should you? With great effort, you would be able to replace your tire with toothpicks as well, but sometimes you have to acknowledge that other tools are better for the job at hand.

Abigail


In reply to Re: regex 2 find C function dependencies by Abigail-II
in thread regex 2 find C function dependencies by jai

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.