Skip to content

Codehardt/go-ahocorasick

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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*/)