An open API service indexing awesome lists of open source software.

https://github.com/simmsb/like-aho-corasick-but-different

Something for finding all word boundary delimited substrings in another string, and carrying extra info on match states.
https://github.com/simmsb/like-aho-corasick-but-different

Last synced: over 1 year ago
JSON representation

Something for finding all word boundary delimited substrings in another string, and carrying extra info on match states.

Awesome Lists containing this project

README

          

# like-aho-corasick-but-different
Something for finding all word boundary delimited substrings in another string, and carrying extra info on match states.

Mainly derived from [aho-corasick](https://github.com/BurntSushi/aho-corasick),
but with only has what's needed in, has extra logic for only matching
strings that are delimited by word boundaries, and allows for attaching data to
match states to be added to returned matches.