计算比赛数量

时间:2011-11-27 04:55:06

标签: c++ regex

如何使用C ++ 11的std::regex计算匹配数?

std::regex re("[^\\s]+");
std::cout << re.matches("Harry Botter - The robot who lived.").count() << std::endl;

预期产出:

  

7

2 个答案:

答案 0 :(得分:17)

您可以使用regex_iterator生成所有匹配项,然后使用distance对其进行统计:

std::regex  const expression("[^\\s]+");
std::string const text("Harry Botter - The robot who lived.");

std::ptrdiff_t const match_count(std::distance(
    std::sregex_iterator(text.begin(), text.end(), expression),
    std::sregex_iterator()));

std::cout << match_count << std::endl;

答案 1 :(得分:3)

您可以使用:

int countMatchInRegex(std::string s, std::string re)
{
    std::regex words_regex(re);
    auto words_begin = std::sregex_iterator(
        s.begin(), s.end(), words_regex);
    auto words_end = std::sregex_iterator();

    return std::distance(words_begin, words_end);
}

使用示例:

std::cout << countMatchInRegex("Harry Botter - The robot who lived.", "[^\\s]+");

输出:

7