match_results ::: 运算符=用于将一个smatch对象中的所有匹配替换为另一个smatch对象中的新匹配。
句法:
smatch_name1 = (smatch_name2)
Note: smatch_name is an object of match_results class.
参数:右侧的smatch对象被复制到左侧的对象。
返回值:不返回任何内容。
注意:第一个元素始终包含整个正则表达式匹配项,而其他元素则包含特定的捕获组。
下面的程序说明了上述函数。
程序1:
// CPP program to illustrate
// match_results operator= in C++
#include
using namespace std;
int main()
{
string s("Geeksforgeeks");
regex re("(Geeks)(.*)");
smatch match1, match2;
regex_match(s, match1, re);
// use of operator =--> assigns all
// the contents of match1 to match2
match2 = match1;
cout << "Matches are:" << endl;
for (smatch::iterator it = match2.begin();
it != match2.end(); it++) {
cout << *it << endl;
}
}
输出:
Matches are:
Geeksforgeeks
Geeks
forgeeks
程式2:
// CPP program to illustrate
// match_results operator= in C++
#include
using namespace std;
int main()
{
string s("Geeksforgeeks");
regex re1("(Geeks)(.*)");
regex re2("(Ge)(eks)(.*)");
smatch match1, match2;
regex_match(s, match1, re1);
regex_match(s, match2, re2);
smatch max_match;
// use of operator =--> assigns all
// the contents of match1 to match2
if (match1.size() > match2.size()) {
max_match = match1;
}
else {
max_match = match2;
}
cout << "Smatch with maximum matches:" << endl;
for (smatch::iterator it = max_match.begin();
it != max_match.end(); it++) {
cout << *it << endl;
}
}
输出:
Smatch with maximum matches:
Geeksforgeeks
Ge
eks
forgeeks
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。