C ++ STL中的match_results begin()和end()函数

在本文中,我们将讨论C ++ STL中match_results::begin()和match_results::end()函数的工作原理,语法和示例。

什么是C ++ STL中的match_results?

std::match_results是一个类似于容器的特殊类,用于保存匹配的字符序列的集合。在此容器类中,正则表达式匹配操作可找到目标序列的匹配项。

什么是match_results::begin()?

match_results::begin()函数是C ++ STL中的内置函数,该函数在<regex>头文件中定义。该函数返回一个迭代器,该迭代器指向match_results对象中的第一个元素。match_results::begin()和match_results::end()一起用于给出match_results容器的范围。

语法

match_name.begin();

参数

此函数不接受任何参数。

返回值

该函数返回一个迭代器,该迭代器指向match_results容器的第一个元素。

示例

Input: std::string str("nhooo");
std::smatch Mat;
std::regex re("(Tutorials)(.*)");
std::regex_match ( str, Mat, re );
Mat.begin();
Output: T

示例

#include <iostream>
#include <string>
#include <regex>
int main () {
   std::string str("Tutorials");
   std::smatch Mat;
   std::regex re("(Tuto)(.*)");
   std::regex_match ( str, Mat, re );
   std::cout<<"Match Found: " << std::endl;
   for (std::smatch::iterator i = Mat.begin(); i!= Mat.end(); ++i) {
      std::cout << *i << std::endl;
   }
   return 0;
}

输出结果

如果我们运行上面的代码,它将生成以下输出-

Match Found
Tutorials
Tuto
rials

什么是match_results::end()?

match_results::end()函数是C ++ STL中的内置函数,在<regex>头文件中定义。此函数返回一个迭代器,该迭代器指向match_results对象中最后一个元素旁边的位置。match_results::begin()和match_results::end()一起用于给出match_results容器的范围。

语法

smatch_name.begin();

参数

此函数不接受任何参数。

返回值

此函数返回一个迭代器,该迭代器指向比match_results容器结尾更远的元素。

Input: std::string str("nhooo");
std::smatch Mat;
std::regex re("(Tutorials)(.*)");
std::regex_match ( str, Mat, re );
Mat.end();
Output: m //Random value which is past to the end of the container.

示例

#include <iostream>
#include <string>
#include <regex>
int main () {
   std::string str("Tutorials");
   std::smatch Mat;
   std::regex re("(Tuto)(.*)");
   std::regex_match ( str, Mat, re );
   std::cout<<"Match Found: " << std::endl;
   for (std::smatch::iterator i = Mat.begin(); i!= Mat.end(); ++i) {
      std::cout << *i << std::endl;
   }
   return 0;
}

输出结果

如果我们运行上面的代码,它将生成以下输出-

Match Found
Tutorials
Tuto
rials