You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation says that \0 matches the NUL character, but at least when using the default matcher, \0 seems to be treated as the prefix for an octal encoding of a character
The text was updated successfully, but these errors were encountered:
The problem is actually in the regex converter, which takes the "signature" of a regex engine to make sure it complies and also converts non-supported regex syntax to syntax the the regex engine supports.
Line 53 in include/reflex/matcher.h should be updated to add a 0 after the W to natively support \0 escapes:
The documentation says that
\0
matches the NUL character, but at least when using the default matcher,\0
seems to be treated as the prefix for an octal encoding of a characterThe text was updated successfully, but these errors were encountered: