Releases: hankcs/AhoCorasickDoubleArrayTrie
Releases · hankcs/AhoCorasickDoubleArrayTrie
v1.2.2
v1.2.1 Support for CharSequence
Now we can parse any CharSequence including but not limited to StringBuilder.
v1.2.0 New Feature
public boolean matches(String text)
public Hit<V> findFirst(String text)
- For upgrading, you'll probably need to change
AhoCorasickDoubleArrayTrie<String>.Hit<String>
toAhoCorasickDoubleArrayTrie.Hit<String>
in your old code.
Thanks @turbanoff for the new features!
v1.1.0 with New Feature
Add feature to stop searching in the hit callback by @fatho
Thanks!