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.
- Host: GitHub
- URL: https://github.com/simmsb/like-aho-corasick-but-different
- Owner: simmsb
- License: agpl-3.0
- Created: 2019-06-14T01:32:52.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-27T23:28:36.000Z (over 6 years ago)
- Last Synced: 2025-01-07T08:19:29.153Z (over 1 year ago)
- Language: Rust
- Size: 92.8 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.