📜  match_results cbegin()在C++ STL中添加cend()

📅  最后修改于: 2021-05-30 05:19:13             🧑  作者: Mango

  • match_results :: cbegin()是C++ STL中的inbulit函数,它返回一个常量迭代器,该迭代器指向match_results对象中的第一个匹配项。该迭代器无法修改向量的内容。
    句法:
    smatch_name.cbegin()

    参数:该函数不接受任何参数。

    返回值:该函数返回一个常量迭代器,该迭代器指向match_results对象中的第一个匹配项。 match_results对象中包含的匹配项始终是恒定的。

    注意:第一个元素始终包含整个正则表达式匹配项,而其他元素则包含特定的捕获组。

    下面的程序说明了上述函数。

    // C++ program to illustrate the 
    // match_result function 
    #include 
    using namespace std;
    int main()
    {
        string sp("geeksforgeeks");
        regex re("(geeks)(.*)");
      
        smatch match;
      
        // we can use member function on match
        // to extract the matched pattern.
        std::regex_match(sp, match, re);
      
        // The size() member function indicates the
        // number of capturing groups plus one for the overall match
        // match size = Number of capturing group + 1
        // (.*) which "forgeeks" ).
        cout << "Match size = " << match.size() << endl;
      
        cout << "matches:" << endl;
        for (smatch::iterator it = match.cbegin(); it != match.cend(); ++it)
            cout << *it << endl;
        return 0;
    }
    

    输出:

    Match size=3
    matches:
    geeksforgeeks
    geeks
    forgeeks
    
  • smatch :: cend ()是C++ STL中的inbulit函数,它返回一个常量迭代器,该迭代器指向match_results对象中的过去结束匹配。该迭代器无法修改向量的内容。

    句法:

    smatch_name.cend()

    参数:该函数不接受任何参数。

    返回值:该函数返回一个常量迭代器,该迭代器指向match_results对象中的过去结束匹配。 match_results对象中包含的匹配项始终是恒定的。

    注意:第一个元素始终包含整个正则表达式匹配项,而其他元素则包含特定的捕获组。

    下面的程序说明了上面的函数

    // C++ program to illustrate the 
    // match_results cend() function 
    #include 
    using namespace std;
    int main()
    {
        string sp("matchresult");
        regex re("(match)(.*)");
      
        smatch match;
      
        // we can use member function on match
        // to extract the matched pattern.
        std::regex_match(sp, match, re);
      
        // The size() member function indicates the
        // number of capturing groups plus one for the overall match
        // match size = Number of capturing group + 1
        // (.*) which "results" ).
        cout << "Match size = " << match.size() << endl;
      
        cout << "matches:" << endl;
        for (smatch::iterator it = match.cbegin(); it != match.cend(); ++it)
            cout << *it << endl;
        return 0;
    }
    

    输出:

    Match size=3
    matches:
    matchresults
    match
    results
    
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”