Skip to content

๐Ÿ™… Go package for detecting and removing stopwords from text.

License

Notifications You must be signed in to change notification settings

orsinium-labs/stopwords

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

6 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

stopwords

Go package for detecting and removing stopwords from a text.

Installation

go get github.com/orsinium-labs/stopwords

Usage

language := "en"
sw := stopwords.MustGet(language)
for match := sw.Find(input) {
    fmt.Println(match.Word)
}