Help for this page

Select Code to Download


  1. or download this
    my $count = grep /\Q$SEARCH_TERM\E/ && /Z/, @C_LOC_ARRAY;
    
  2. or download this
    my $count = grep /Z/,
                grep /\Q$SEARCH_TERM\E/,
                @C_LOC_ARRAY;