hanickadot / compile-time-regular-expressions

Compile Time Regular Expression in C++
https://twitter.com/hankadusikova
Apache License 2.0
3.22k stars 177 forks source link

[Question] ECMAScript regex support #276

Closed ceztko closed 1 year ago

ceztko commented 1 year ago

I'm finding here and there hints about planned ECMAScript regex support. I'm evaluating use of ctre, but I need ECMAScript format support which I already use with standard std::regex. Can you clarify on the matter?

ceztko commented 1 year ago

P.S.: I'm sorry for initial blank issue.

hanickadot commented 1 year ago

I'm currently don't have much time for new features. So it's planned but in a longterm.

ceztko commented 1 year ago

Thank you for the clarification. Also, can you project be used at runtime with dynamic pattern? Or not really.

hanickadot commented 1 year ago

Not really. The pattern is compiled-in. For best performance and safety I would recommend RE2.