📜  C++中的match_results prefix()和suffix()

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

  • 所述的match_results ::前缀()是C中的内置函数++,其用于获取其在输入目标字符串匹配的字符串之前的字符串。

    句法:

    smatch_name.prefix()
    
    Note: smatch_name is an object of match_results class.
    

    参数:此函数接受任何参数。

    返回值:该函数返回目标字符串匹配序列之前的序列。

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

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

    // CPP program to illustrate
    // match_results prefix() function
    #include 
    using namespace std;
      
    int main()
    {
        string s("Geeksforgeeks is a computer science portal");
        regex re("computer");
      
        smatch match;
      
        regex_search(s, match, re);
      
        cout << "Prefix is: [";
        if (!match.empty()) {
            cout << match.prefix() << "]" << endl;
        }
        return 0;
    }
    
    输出:
    Prefix is: [Geeksforgeeks is a ]
    
  • 所述的match_results ::后缀()是C中的内置函数++,其用于获取被成功输入目标字符串匹配的字符串的字符串。

    句法:

    smatch_name.suffix()
    
    Note: smatch_name is an object of match_results class.
    

    参数:此函数接受任何参数。

    返回值:该函数返回目标字符串匹配序列之后的序列。

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

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

    // CPP program to illustrate
    // match_results suffix() function
    #include 
    using namespace std;
      
    int main()
    {
        string s("Geeksforgeeks is a computer science portal");
        regex re("computer");
      
        smatch match;
      
        regex_search(s, match, re);
      
        cout << "Suffix is: [";
        if (!match.empty()) {
            cout << match.suffix() << "]" << endl;
        }
        return 0;
    }
    
    输出:
    Suffix is: [ science portal]
    
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”