We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi and thanks for an amazing library - I'm developing a Fortran port of it here.
I've just found an issue/potential bug with the end-pattern command.
text = "table football" pattern = "l$"
returns index=13, matchlength=3
Here's the sample test program:
#include <stdio.h> #include <stdlib.h> #include "re.h" int main() { const char *text = "table football"; const char *pattern = "l$"; int index,len; index = re_match(pattern, text, &len); printf("index=%d len=%d \n",index,len); }
Tested on Mac with clang 13.1.6
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi and thanks for an amazing library - I'm developing a Fortran port of it here.
I've just found an issue/potential bug with the end-pattern command.
text = "table football"
pattern = "l$"
returns index=13, matchlength=3
Here's the sample test program:
Tested on Mac with clang 13.1.6
The text was updated successfully, but these errors were encountered: