加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

如何使用新的c 0x regex对象在字符串中重复匹配?

发布时间:2020-12-16 05:32:15 所属栏目:百科 来源:网络整理
导读:我有一个字符串: "hello 1,hello 2,hello 17,and done!" 而且我想重复地应用这个正则表达式: hello ([0-9]+) 并且能够以某种方式遍历比赛和他们的捕获组.我在c 0x中成功使用了“正则表达式”的东西来找到字符串中的某些东西的第一个匹配项,并检查捕获组的
我有一个字符串:
"hello 1,hello 2,hello 17,and done!"

而且我想重复地应用这个正则表达式:

hello ([0-9]+)

并且能够以某种方式遍历比赛和他们的捕获组.我在c 0x中成功使用了“正则表达式”的东西来找到字符串中的某些东西的第一个匹配项,并检查捕获组的内容;但是,我不知道如何在字符串上多次执行,直到找到所有匹配项.帮帮我!

(平台是视觉工作室2010,万一重要).

解决方法

不要使用regex_match,请使用regex_search.你可以在这里找到例子: http://www.codeguru.com/cpp/cpp/cpp_mfc/stl/article.php/c15339.

这应该是诀窍(注意我直接在浏览器中键入,没有编译它):

#include <iostream>
#include <regex>

int main()
{
   // regular expression
   const std::regex pattern("hello ([0-9]+)");

   // the source text
   std::string text = "hello 1,and done!";

   const std::sregex_token_iterator end;
   for (std::sregex_token_iterator i(text.cbegin(),text.cend(),pattern);
        i != end;
        ++i)
   {
      std::cout << *i << std::endl;
   }

   return 0;
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读