如何在字符串中找到与boost正则表达式匹配的索引?

时间:2008-10-24 15:27:58

标签: c++ boost-regex

如何在字符串中找到与boost正则表达式匹配的索引?

2 个答案:

答案 0 :(得分:7)

使用position的{​​{1}}成员函数:

match_results

答案 1 :(得分:6)

如果你使用boost :: regex_match,那就是匹配的整个字符串 也许你的意思是使用regex_search:

void index(boost::regex& re,const std::string& input){
    boost::match_results<std::string::const_iterator> what;
    boost::match_flag_type flags = boost::match_default;
    std::string::const_iterator s = input.begin();
    std::string::const_iterator e = input.end();
    while (boost::regex_search(s,e,what,re,flags)){
        std::cout << what.position() << std::endl;
        std::string::difference_type l = what.length();
        std::string::difference_type p = what.position();
        s += p + l;
    }
}