- or download this
foreach $sourceLine (@SourceData) {
chomp $sourceLine;
chomp $functionName;
if ($functionName =~ /$sourceLine/) {$counter++;}
}
- or download this
foreach $sourceLine (@SourceData) {
print "$sourcfeLine\n";
...
print "\n";
if ($functionName =~ /$sourceLine/) {$counter++;}
}