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

[libc++] <regex>: Optional empty repetitions should not match #133314

Open
Alcaro opened this issue Mar 27, 2025 · 0 comments
Open

[libc++] <regex>: Optional empty repetitions should not match #133314

Alcaro opened this issue Mar 27, 2025 · 0 comments
Labels
libc++ libc++ C++ Standard Library. Not GNU libstdc++. Not libc++abi. regex Issues related to regex

Comments

@Alcaro
Copy link
Contributor

Alcaro commented Mar 27, 2025

> /(a?)+/.exec("aaa")
Array [ "aaa", "a" ]
> /((b)?(be)?)+bbee/.exec("bbebbee")
Array(4) [ "bbebbee", "bbe", "b", "be" ]

~Firefox

But in libc++, the equivalent operations return [ "aaa", "" ] and [ "bbebbee", "", undefined, undefined ].

Full example: https://godbolt.org/z/zYYenvEdb (blatantly modified from microsoft/STL#5365)

@llvmbot llvmbot added the libc++ libc++ C++ Standard Library. Not GNU libstdc++. Not libc++abi. label Mar 27, 2025
@philnik777 philnik777 added the regex Issues related to regex label Mar 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
libc++ libc++ C++ Standard Library. Not GNU libstdc++. Not libc++abi. regex Issues related to regex
Projects
None yet
Development

No branches or pull requests

3 participants