Extra explanation on containsMatch

This commit is contained in:
robert-bor 2015-09-23 20:56:24 +02:00
parent a46177415f
commit 5203efbbcb

View File

@ -122,7 +122,8 @@ finds.
Emit firstMatch = trie.firstMatch("ababcbab"); Emit firstMatch = trie.firstMatch("ababcbab");
``` ```
The firstMatch will now be "ababc" found at position 0. The firstMatch will now be "ababc" found at position 0. containsMatch just checks if there is a firstMatch and
returns true if that is the case.
If you just want the barebones Aho-Corasick algorithm (ie, no dealing with case insensitivity, overlaps and whole If you just want the barebones Aho-Corasick algorithm (ie, no dealing with case insensitivity, overlaps and whole
words) and you prefer to add your own handler to the mix, that is also possible. words) and you prefer to add your own handler to the mix, that is also possible.