Help for this page

Select Code to Download


  1. or download this
    my @tags = split /\t/, $line;
    my @Definition=("NN", "NNS");
    next unless (grep {$_ eq $tags[ 1 ]} @Definition);
    
  2. or download this
    next unless grep($_ =~ /^$tags[1]/, @Definition);