Help for this page

Select Code to Download


  1. or download this
          #penghilangan stopword
          my @words = qw(
             untuk
    ...
          );
          my $regex = join '|', map qr/\b\Q$_\E\b/, @words;
          $kata =~ s/$regex//g;