Help for this page

Select Code to Download


  1. or download this
        if ($line =~ /(#include.*\.h[>"])$/ ) {
            print "$1\n";
        }
    
  2. or download this
        $line =~ s/.*(?=#include)//;
        print $line;