compile-time-regular-expressions icon indicating copy to clipboard operation
compile-time-regular-expressions copied to clipboard

Compile Time Regular Expression in C++

Results 112 compile-time-regular-expressions issues
Sort by recently updated
recently updated
newest added
trafficstars

Please add the library's version number to the single-header file (`ctre.hpp`) so that users can check which version they already have and whether they need to update. Also, please supply...

if someone is willing to help :)

nice-to-have

I added an ordered_match() function that can be used to compare targets to all possible matches for a given subject. This relationship is encoded in the ctre::partial_ordering type which can...

Right now there is an implicit conversion from a match (more explicitly from a captured_content::storage as I can see). I wonder if it was possible to convert a match to...

idea

Hi, I'm starting to use this library, but have some issues with the include strategy. I'd like to have a proper folder for the inclusion, something like: `#include ` like...

make regrammar Where could we find the desatomat(LL1q) tool? similar issue: https://github.com/hanickadot/compile-time-regular-expressions/issues/37

The limits of char are architecture dependent, and all modern architectures make it unsigned. Fixes issue 253.

I notice [issue 296](https://github.com/hanickadot/compile-time-regular-expressions/issues/296), and add anchors on regex. Though it's stupid because it definitely won't split anything, it may be expected to be an empty range instead of an...

When trying to build a project with ``` #include ``` using LLVM-15 on both the current master (3259bf65d455a870639474cd6340f510fab54c3a) and v3.8 I see warnings and a few errors that prevent usage:...

Hello, I'm impressed with your project and I'm considering repurposing some of its code to create a compile-time lexer. From my observation, to transition from the PCRE grammar to a...