Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 278 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 278 Bytes

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)
}