Help for this page

Select Code to Download


  1. or download this
    foreach my $stopword (@stop_words)
    {
        $date =~ s/\b$stopword\b//g;
    }
    
  2. or download this
    my $stop_pat = '\b(' . join('|', @stop_words) . ')\b';
    $data =~ s/$stop_pat//g;