Skip to content

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

License

Notifications You must be signed in to change notification settings

gilesc/AhoCorasick.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 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

Releases

No releases published

Packages

No packages published

Languages