首页 > 编程 > C++ > 正文

c++使用正则表达式提取关键字的方法

2020-05-23 13:26:23
字体:
来源:转载
供稿:网友

下面看下c++通过正则表达式提取关键字,代码如下所示:

string text = "岳云鹏的对象叫铁锤";  regex pattern("(.*)的对象叫(.*)"); smatch results;  if (regex_match(text, results, pattern)) {   for (auto it = results.begin(); it != results.end(); ++it)    cout << *it << endl;  }  else {   cout << "match failed: " << text << endl;  }  // 岳云鹏的对象叫铁锤 // 岳云鹏 // 铁锤

下面看下C++正则表达式提取匹配到的字符串

/* * 输入是789.123.456, 输出的是789 */void get(){ std::regex ip_reg("(.*)/.123/.456"); std::smatch matchResult;  string inputStr;  std::getline(std::cin,inputStr);  //正则匹配  if (std::regex_match(inputStr,matchResult,ip_reg))  {   cout << "Match: ";   //打印子表达式结果   for (size_t i = 1; i < matchResult.size(); ++i)   {    cout << matchResult[i] << " ";   }  }  else  {   cout << "Not Match!";  } }

总结

以上所述是小编给大家介绍的c++使用正则表达式提取关键字的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对VEVB武林网网站的支持!


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表