You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
useYeremi\Stopwords\StopwordsManager;
// Text to analyze$text = "O documento foi completamente revisado e está totalmente correto.";
$manager = newStopwordsManager();
$filteredWords = $manager->extractRelevantWords($text);
print_r($filteredWords);
Listing words from dictionary
useYeremi\Stopwords\Service\StopwordsManager;
$manager = newStopwordsManager();
// List words organized by the categories provided in the dictionaries$dictionary = $manager->dictionary();
// List words by category$adverbs = $manager->dictionaryByCategory(StopwordsCategory::ADVERBS);