multiple-string-searcher icon indicating copy to clipboard operation
multiple-string-searcher copied to clipboard

Java library for fast multiple strings matchings. Uses internally Aho-Corasick or Commentz-Walter.

Results 3 multiple-string-searcher issues
Sort by recently updated
recently updated
newest added

... 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...