Help for this page

Select Code to Download


  1. or download this
    $grepper=join('','label','(','"');
    print "$grepper\n";
    ...
    @LABEL = grep(/$grepper/, @array);
    print "@LABEL \n";
    
  2. or download this
    @LABEL = grep(/label\(\"/, @array);
    print "@LABEL \n";