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
Describe the bug
In the following code snippet, the second regex capture called callConv fails to be captured. Instead the group is set to 'false'. This behavior does not occur on clang or GCC.
#include <iostream>
#include <regex>
int main()
{
std::regex fnTypeDefRgx("([a-zA-Z_][a-zA-Z0-9_*]*)\\s*(?:([a-zA-Z_][a-zA-Z0-9_*]*)?\\s*)?(?:[a-zA-Z_][a-zA-Z0-9_]*)?\\s*\\((.*)\\)");
std::smatch matches;
std::string input = "void stdcall (char*, float, uint8_t)";
if (std::regex_search(input, matches, fnTypeDefRgx)) {
std::string retType = matches[1].str();
std::string callConv = matches[2].str(); // this guy is 'false' BUG
std::cout << callConv << std::endl;
}
return 0;
}
for convenience, the unespaced regex is as follows. It regexs the return value, optional calling convention, and then parameters all as one with optional *'s on the type names.
Expected behavior
The expected output would be that the second capture group contains the string 'stdcall' as in the online compiler here: https://onlinegdb.com/ry28UXodI
STL version Microsoft Visual Studio Community 2019 Version 16.4.5
The text was updated successfully, but these errors were encountered:
I debugged this some more, the issue appears to be capture groups inside of non-capturing groups. When re-written with the equivalent expression, the results are as expected:
Reduced test case; I was able to eliminate the non-capture groups:
C:\Temp>type meow.cpp
#include <iostream>
#include <regex>
#include <string>
using namespace std;
int main() {
const regex r{R"((A+)\s*(B+)?\s*B*)"};
smatch m;
const string s{"AAA BBB"};
if (regex_match(s, m, r)) {
cout << "This should be \"AAA\": \"" << m[1] << "\"\n";
cout << "This should be \"BBB\": \"" << m[2] << "\"\n";
}
}
C:\Temp>cl /EHsc /nologo /W4 meow.cpp
meow.cpp
C:\Temp>meow
This should be "AAA": "AAA"
This should be "BBB": ""
Describe the bug
In the following code snippet, the second regex capture called callConv fails to be captured. Instead the group is set to 'false'. This behavior does not occur on clang or GCC.
for convenience, the unespaced regex is as follows. It regexs the return value, optional calling convention, and then parameters all as one with optional *'s on the type names.
Expected behavior
The expected output would be that the second capture group contains the string 'stdcall' as in the online compiler here: https://onlinegdb.com/ry28UXodI
STL version
Microsoft Visual Studio Community 2019 Version 16.4.5
The text was updated successfully, but these errors were encountered: