http://qs1969.pair.com?node_id=292815


in reply to regex 2 find C function dependencies

I just went through a similar exercise myself. I did not find C::Scan to be useful, and Parse::RecDescent can do it, but probably too much work for your needs.

You really want to use Regexp::Common here.

Something like this should get you started:
use Regexp::Common; my $func_rx = qr{ ([a-zA-Z]\w*) # match function name \s* # optional space ($RE{balanced}{-parens='()'}) # match parameter list }sx; while( $code =~ /$func_rx/g ) { print "func = $1\n"; print "param list = $2\n"; }

This will match things like if( !foo ) though, so you will probably have to explicitly skip built-in keywords like that.

Note that this is certainly not a complete solution for you, but just to point out Regexp::Common is a handy tool that should help.

Also you probably want to strip out all the comments first, so they dont throw off your matching regex. But this can also be done with Regexp::Common:
$code =~ s/$RE{comment}{'C++'}//g;