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
Hello, it seems that it does not work for GUUID validation
const char* pattern = "^([0-9A-Fa-f]{8}[-][0-9A-Fa-f]{4}[-][0-9A-Fa-f]{4}[-][0-9A-Fa-f]{4}[-][0-9A-Fa-f]{12})$";
int m = re_match(pattern, "CA761232-ED42-11CE-BACD-00AA0057B223");
Your regex contains quantifiers ({8} etc.). Currently, they are not supported (ref. Issues #18, #29).
For this reason, I'd expect your regex to fail. Issue #29 points to a fork that, while out of date, does support quantifiers. Or, while more tedious and harder to maintain, repeating the character group prior to the quantifier would work.
Hello, it seems that it does not work for GUUID validation
This works with online tools https://regex101.com/r/hD8sJ8/3
Thank you
The text was updated successfully, but these errors were encountered: