hyperscan

High-performance regular expression matching library for pattern searching

brewmacoslinux
Try with needOr install directly
Source

About

High-performance regular expression matching library

Commands

hs_compilehs_scan

Examples

Compile a regular expression pattern into a Hyperscan database$ hs_compile -p 'pattern' -o database.hsdb
Scan text against a compiled Hyperscan pattern database$ hs_scan -d database.hsdb -i input.txt
Use Hyperscan library in C code for high-speed pattern matching$ gcc -o matcher matcher.c $(pkg-config --cflags --libs libhs)