intel / hyperscan

High-performance regular expression matching library
https://www.hyperscan.io
Other
4.78k stars 710 forks source link

请问hyperscan支持括号提取子串信息吗? #112

Closed ouliuquan closed 5 years ago

ouliuquan commented 5 years ago

类似于boost regex 的提取括号内符合正则表达式的子串,翻遍了所有的文档没有发现这个接口或者实例。

xiangwang1 commented 5 years ago

We don't support capturing as it is not mandatory in many use cases and it also poses significant overhead to the performance. Please try Chimera if you real need this feature.

ouliuquan commented 5 years ago

Thank you.