/go-ahocorasick

Aho-Corasick algorithm implemented in Golang

Primary LanguageGoMIT LicenseMIT

GoDoc Build Status Go Report Card License: MIT

go-ahocorasick

Aho-Corasick algorithm implemented in Golang

Usage

ac := ahocorasick.New([]string{/*your strings here*/})
matches := ac.Match(/*your text here*/)