我无法获得regex_match
函数来查找不区分大小写的匹配项。即使boost::xpressive::regex_constants::icase
是defined并且我使用了强制转换(因此Xpressive的icase
方法没有歧义),我得到编译错误(VS2010):
错误C2440:'type cast':无法从'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;
}
你知道问题可能是什么吗?
答案 0 :(得分: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
(regex_match
的3个参数应该具有此类型。)