我在使用标准正则表达式时遇到问题。我无法使问号量词起作用。对 regex_match 的调用将始终返回 0。
我还尝试了 {0,1} ,它的行为也不像我预期的那样:它的行为就像一个 + 量词。
这是我的代码:
#include <iostream>
#include <regex>
using namespace std;
int main(int argc, char **argv){
regex e1("ab?c");
cout << regex_match("ac", e1) << endl; // expected : 1, output 0
cout << regex_match("abc", e1) << endl; // expected : 1, output 0
cout << regex_match("abbc", e1) << endl; // expected : 0, output 0
regex e2("ab{0,1}c");
cout << regex_match("ac", e2) << endl; // expected : 1, output 0
cout << regex_match("abc", e2) << endl; // expected : 1, output 1
cout << regex_match("abbc", e2) << endl; // expected : 0, output 1
return 0;
}
我使用以下命令进行编译:
g++ -std=c++11 main.cpp -o regex_test
我在这里做错了吗?或者为什么它不起作用?