我有一个字符串:
"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; }