Skip to content

wparedes17/AhoCorasick.jl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AhoCorasick

A Julia implementation of the Aho-Corasick algorithm for fast string searching.

Example

using AhoCorasick
ac = Automaton()
add(ac, "alpha")
add(ac, "beta", "mykey")
build(ac) 
search(ac, "alpha and beta")

Features

  • Can be run in case-sensitive or case-insensitive mode
  • Optional keys can be attached to each word in the automaton

License

GNU GPLv3

About

Julia implementation of the Aho-Corasick algorithm for fast string searching.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Julia 100.0%