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
but it's not accepted. As a matter of fact, it seems like your regexes are very limited, as e.g. the normal \d, \D, \s, or the alternative operator | are not accepted (and, to be honest, not mentioned in you documentation of your regular expressions either).
Is it really the case that you do not support full (normal) regular expressions as, e.g., in https://regex101.com, or supported by Python, Swift or other languages (via libraries, to be sure)?
If not, please implement full support.
The text was updated successfully, but these errors were encountered:
I am trying to match the following RegEx
RegEx *r1 = regex_create("\\d{1,3}[dwmy]");
but it's not accepted. As a matter of fact, it seems like your regexes are very limited, as e.g. the normal
\d
,\D
,\s
, or the alternative operator|
are not accepted (and, to be honest, not mentioned in you documentation of your regular expressions either).Is it really the case that you do not support full (normal) regular expressions as, e.g., in https://regex101.com, or supported by Python, Swift or other languages (via libraries, to be sure)?
If not, please implement full support.
The text was updated successfully, but these errors were encountered: