Branch | Status | Coverage |
---|---|---|
master |
go get -u github.com/euskadi31/go-tokenizer/v3
import (
"fmt"
"github.com/euskadi31/go-tokenizer/v3"
)
func main() {
t := tokenizer.New()
tokens := t.Tokenize("I believe life is an intelligent thing: that things aren't random.")
fmt.Print(tokens) // []string{"I", "believe", "life", "is", "an", "intelligent", "thing", "that", "things", "aren't", "random"}
}
go-tokenizer is licensed under the MIT license.