rure

C API for Rust's regex engine with high performance

brewmacoslinux
Try with needOr install directly
Source

About

C API for RUst's REgex engine

Commands

rure

Examples

Compile and use a regex pattern to match text$ rure 'pattern' 'text_to_match'
Search for regex matches in a file$ rure 'regex_pattern' < input.txt
Use with grep-like functionality for pattern matching$ echo 'sample text' | rure '\w+'