0

我只是无法获得regex_match查找不区分大小写匹配项的功能。即使boost::xpressive::regex_constants::icase定义icase并且我使用了强制转换(因此Xpressive的方法没有歧义),我得到一个编译错误(VS2010):

错误 C2440:“类型转换”:无法从“const boost::xpressive::detail::modifier_op”转换为“boost::xpressive::regex_constants::match_flag_type”

一些要重现的代码:

#include <stdio.h>
#include <boost/xpressive/xpressive.hpp>

int main(){
    std::string str("FOO");
    boost::xpressive::sregex re = boost::xpressive::sregex_compiler().compile("foo");
    bool result = regex_match(str,re,(boost::xpressive::regex_constants::match_flag_type)boost::xpressive::regex_constants::icase);
    if(result){
        std::cout << "Match!";
    }else{
        std::cout << "No match!";
    }
    return 0;
}

你知道问题可能是什么吗?

4

1 回答 1

2

尝试使用

boost::xpressive::sregex re = boost::xpressive::sregex_compiler().
compile("foo", boost::xpressive::icase);

syntax_options_type(即boost::xpressive::regex_constants::icase_)不是match_flag_type(3 个参数 forregex_match应该有这种类型)。

于 2013-07-26T09:48:10.367 回答