我正在使用 C++ 正则表达式。无法掌握以下编程输出。
#include <iostream>
#include <regex>
#include <algorithm>
#include <string>
using namespace std;
int main(){
regex r("a(b+)(c+)d");
string s ="abcd";
smatch m;
cout << s << endl;
const bool b = regex_match(s,m, r);
cout << b <<endl; // prints 1 - OK
if(b){
cout << m[0] << endl; // prints abcd - OK
cout << m[1] << endl; // prints ab - Why? Should it be just b?
cout<< m[2] << endl; // prints bc - Why? Should it be just c?
}
}
根据我接触其他语言的正则表达式,括号应该与字符串的捕获部分匹配吗?所以输出应该是
1
abcd
b
c
编辑:我正在使用 g++ 4.6