match_results::empty()是C++中的内置函数,如果smatch对象不包含匹配项,则返回True。
用法:
smatch_name.empty() Note: smatch_name is an object of match_results class.
参数:此函数不接受任何参数。
返回值:如果对象是默认构造的,则此函数返回true;否则,如果regex_match或regex_search中的任何一个找到至少一个匹配项,则此函数返回false。
错误和异常:
- 它没有异常抛出保证。
- 传递参数时引发异常。
注意:第一个元素始终包含整个正则表达式匹配项,而其他元素则包含特定的捕获组。
以下示例程序旨在说明上述方法。
程序1:
// CPP program to illustrate
// match_results empty() in C++
#include<bits/stdc++.h>
using namespace std;
int main()
{
string s("harsha");
regex re1("Geeks.*");
regex re2("geeks.*");
smatch match1, match2;
regex_match(s, match1, re1);
regex_match(s, match2, re2);
// if match1 is empty it returns
// true or else false
if (match1.empty()) {
cout << "Regex-1 did not match" << endl;
}
else {
cout << "Regex-1 matched" << endl;
}
// if match2 is empty it returns
// true or else false
if (match2.empty()) {
cout << "Regex-2 did not match" << endl;
}
else {
cout << "Regex-2 matched" << endl;
}
return 0;
}
输出:
Regex-1 did not match Regex-2 did not match
程序2:
// CPP program to illustrate
// match_results empty() in C++
#include<bits/stdc++.h>
using namespace std;
int main()
{
string s("geeksforgeeks");
regex re1("Geeks.*");
regex re2("geeks.*");
smatch match1, match2;
regex_match(s, match1, re1);
regex_match(s, match2, re2);
// if match1 is empty it returns
// true or else false
if (match1.empty()) {
cout << "Regex-1 did not match" << endl;
}
else {
cout << "Regex-1 matched" << endl;
}
// if match2 is empty it returns
// true or else false
if (match2.empty()) {
cout << "Regex-2 did not match" << endl;
}
else {
cout << "Regex-2 matched" << endl;
}
return 0;
}
输出:
Regex-1 did not match Regex-2 matched
相关用法
- C++ set::empty()用法及代码示例
- C++ map::empty()用法及代码示例
- C++ unordered_map empty用法及代码示例
- C++ array::empty()用法及代码示例
- C++ list empty()用法及代码示例
- C++ unordered_set empty()用法及代码示例
- C++ unordered_multimap empty()用法及代码示例
- C++ multiset empty()用法及代码示例
- C++ unordered_multiset empty()用法及代码示例
- C++ multimap empty()用法及代码示例
- C++ vector::empty()、vector::size()用法及代码示例
注:本文由纯净天空筛选整理自Harsha_Mogali大神的英文原创作品 match_results empty() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。