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

regex and ctRegex give different results #10692

Open
ntysdd opened this issue Mar 19, 2025 · 1 comment
Open

regex and ctRegex give different results #10692

ntysdd opened this issue Mar 19, 2025 · 1 comment

Comments

@ntysdd
Copy link

ntysdd commented Mar 19, 2025

I find regex and ctRegex give different results.

import std.stdio;
import std.regex;

void main()
{
    auto reg = ctRegex!("^(1+)\\1+$");
    foreach (i; 2..100)
    {
        char[] s = new char[i];
        s[] = '1';
        if (!s.matchFirst(reg))
        {
            writeln(i);
        }
    }
}

And both seem buggy.

@ntysdd
Copy link
Author

ntysdd commented Mar 19, 2025

First post there
dlang/dmd#15029 (comment)

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