multiple-string-searcher
multiple-string-searcher copied to clipboard
Java library for fast multiple strings matchings. Uses internally Aho-Corasick or Commentz-Walter.
... Why has it not seen any love in 5 years? Anyone using it for serious stuff?
This pull request allows specifying custom in-word characters for words by extending `isPartialMatch` in `Trie.java`, which improves the libraries flexibility in defining word boundaries. **Example:** ```java // create a searcher...
Use a double trie structure, which has a better time and space behavior to store the goto structure. This structure is also used in https://github.com/hankcs/AhoCorasickDoubleArrayTrie, and is 6 to 10...