Dr. Robert van Engelen

Results 199 comments of Dr. Robert van Engelen

Have you been able to try this out? Suggestions/recommendations to share?

The same problem occurs with character properties, such as `\p{N}` for example, because `N` is considered an upper case letter. I tested ag 2.2.0.

Thanks for contributing. But why is this needed? The project does not depend on the OS.

Are you sure? #142 is about static versus dynamic libraries on Linux/Unix and MacOS. Has nothing to do with OS/architectures.

Thank you for your feedback! Note that Flex does not support group captures and backreferences. I have group capture on the list of things to add to RE/flex. There are...

This needs some clarification. With the PCRE matcher in RE/flex _you can use capturing groups_. Use named captures `(?pattern)`. Backreference with `\g{name}` and extract the pattern in C++ with: ~~~...

libtool turned out to be problematic in the past on MacOS. So I've not touched lib/Makefile.am for a long time.

Thank you for the feedback. Let's get this sorted out. > 1. Using the reflex.a (or reflexmin.a) library from the distribution on the Homebrew site under macOS Monterey 12.4 (ARM...

By the way, to bypass the realloc calls, you may want to set the buffer size large for a large window on the input. This should be large enough to...

I have more questions than answers, since there isn't much here to offer any clues. Questions like these: - does the FlexLexer class instantiation and destruction crash without scanning input?...