3

奇怪的是,谷歌拒绝回答这样简单的问题:
如何使 boost::regexp 不区分大小写?

这就是我所拥有的:

static const boost::regex bad_words("(?:^|.* )(f(?:uc|a)k(?:i[ng]{1,2})?|bitch(?:es|iz)?)(?:$| .*)");   //reduced to the english ones

当然,我也想过滤大写的坏词。这就是我匹配它们的方式:

//std::string ms; - chat messsage
//boost::match_results<std::string::const_iterator> results;  - prewious regexp results
else if(boost::regex_match(ms, results2, bad_words)) {   //
        std::stringstream msg;
        msg<<"Avoid bad words! Word '"<<results2[1]<<"' is banned!";
        this->whisper(results[1], msg.str());   //name, message
}

那么,不敏感的正则表达式还有另一个功能吗?还是另一个正则表达式对象?或者修改器i可用?

4

1 回答 1

14

您可以使用以下boost::regex::icase选项:

static const boost::regex bad_words("...your regex...", boost::regex::icase);
于 2013-03-25T16:33:00.093 回答