📜  C++ STL中的match_results empty()

📅  最后修改于: 2021-05-30 04:16:08             🧑  作者: Mango

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
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
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++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”