goAcAutoMachine icon indicating copy to clipboard operation
goAcAutoMachine copied to clipboard

case: return ""

Open Chu-J opened this issue 2 years ago • 0 comments

ac := goAcAutoMachine.NewAcAutoMachine()
ac.AddPattern("anymore")
ac.AddPattern("i am blessed")
ac.Build()

content := "somi anymore"
results := ac.Query(content)
for _, result := range results {
	fmt.Println(result)
}

Chu-J avatar Sep 29 '22 09:09 Chu-J