entervpl / remove-stop-words
此包已废弃且不再维护。未建议替代包。
从字符串中删除停用词
v0.0.5
2023-02-06 12:58 UTC
Requires
- php: ^7.0 || ^8.0
Requires (Dev)
- phpunit/phpunit: ^10
This package is auto-updated.
Last update: 2024-03-24 16:13:44 UTC
README
从字符串中删除停用词。目前支持法语、西班牙语和英语。如果您想添加其他语言,请随意提交Pull Request。
安装
composer require entervpl/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