Skip to content
New issue

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

Match of \\s* on empty string reports pos == -1, i.e., no match, while it should report pos == 0 and matchlength == 0 #88

Open
grigory-rechistov-intel opened this issue Jul 25, 2023 · 0 comments

Comments

@grigory-rechistov-intel

Consider this program, which tries to match zero or more space characters in a string of length zero:

// $ cat empty-str.c
#include "re.h"
#include "assert.h"

int main() {
    int matchlength = 0;
    int pos = re_match("\\s*", "", &matchlength);
    assert(pos != -1);
    return 0;
}

When compiled with re.c and executed, the assertion fails:

$ gcc empty-str.c re.c
$ ./a.out
a.out: empty-str.c:7: main: Assertion `pos != -1' failed.
Aborted (core dumped)

It is an interesting question about what the result of a successful match for an empty string should be. My take on it is that it should not report a failure for matching (i.e. the return value must not be negative), but the length of the match should be zero.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant