Help for this page

Select Code to Download


  1. or download this
    foreach $sourceLine (@SourceData)
        {
        if ($functionName =~ /$sourceLine/) {$counter++;}
        }
    
  2. or download this
    $counter = grep (/$functionName/ , @SourceData);