remove stop words
v0.3.0
문자열에서 remove stop words . 현재 프랑스어, 스페인어, 영어로 작동합니다. 귀하의 언어를 포함하고 싶다면 언제든지 Pull Request를 제출해 주세요.
composer require rap2hpoutre/remove-stop-words
문자열을 사용하여 remove_stop_words
함수를 호출하면 됩니다.
use function Rap2hpoutre RemoveStopWords remove_stop_words ;
echo remove_stop_words ( ' The quick brown fox jumps over the lazy dog ' );
// quick brown fox jumps lazy dog
두 번째 인수로 로캘을 제공할 수 있습니다.
use function Rap2hpoutre RemoveStopWords remove_stop_words ;
echo remove_stop_words ( ' Portez ce vieux whisky au juge blond qui fume ' , ' fr ' );
// Portez vieux whisky juge blond fume