我正在使用boost regex,但我对boost regex使用的语法感到困惑。如果我想使用模式" bb"要匹配字符串" aabbcc",我必须制作模式" bb"到"。* bb。*"这样就可以匹配字符串了。这是有线的,因为在perl中你不需要添加"。*"在" bb"的前端和末端。我是否错过了关于boost regex的一些内容,或者这只是boost regex的味道?以下是此问题的简单源代码:
#include <boost/regex.hpp>
#include <iostream>
#include <string>
int main() {
boost::regex regex_bb01("bb");
boost::regex regex_bb02(".*bb");
boost::regex regex_bb03("bb.*");
boost::regex regex_bb04(".*bb.*");
if(boost::regex_match("aabbcc", regex_bb01))
std::cout<<"the regex_bb01 is matched\n";
else
std::cout<<"the regex_bb01 is Not matched\n";
if(boost::regex_match("aabbcc", regex_bb02))
std::cout<<"the regex_bb02 is matched\n";
else
std::cout<<"the regex_bb02 is Not matched\n";
if(boost::regex_match("aabbcc", regex_bb03))
std::cout<<"the regex_bb03 is matched\n";
else
std::cout<<"the regex_bb03 is Not matched\n";
if(boost::regex_match("aabbcc", regex_bb04))
std::cout<<"the regex_bb04 is matched\n";
else
std::cout<<"the regex_bb04 is Not matched\n";
}
结果如下:
[root @ localhost BoostCase]#。/ regex_test
regex_bb01不匹配
regex_bb02不匹配
regex_bb03不匹配
匹配regex_bb04
答案 0 :(得分:5)
从boost文档中获取函数regex_match
算法regex_match确定给定的正则表达式是否匹配由一对双向迭代器表示的给定字符序列的 all ,算法定义如下,该函数的主要用途是数据输入验证。
如果你想使用&#39; bb&#39;要匹配,你需要使用boost :: regex_search而不是