1

很明显这里必须我匹配,但是这段代码仍然返回false。

#include <iostream>
#include <boost/regex.hpp>
using namespace std;
using namespace boost;

int main() {
  cout << regex_match("some text", regex("text")) << endl;
}
4

1 回答 1

4

regex_match必须匹配所有给定的字符序列。试试regex_search吧。

于 2013-01-29T22:29:19.320 回答