0
#include <regex>
int main()
{
b = std::regex_match("building", std::regex("^\w*uild(?=ing$)"));
//
// b is expected to be true, but the actual value is false.
//
}
我的編譯器是叮噹3.8。爲什麼std :: regex_match不支持「零長度斷言」?
爲什麼std :: regex_match不支持「零長度斷言」?