在regex_search中设置多行

时间:2018-01-03 10:42:15

标签: c++ regex

我想要搜索模式(“* .txt”),我必须使用多行来获得最佳效果,我的模式是

.*[ \t]*\.[ \t]*txt[ \t]*$

如果添加到结尾上面的模式$我没有结果,如果我从模式的结尾删除$,我有:

test.txt.log  // it not right result
Test.txt

等等。

我的代码是:

std::regex_search(filename, searchPattern, std::regex_constants::match_continuous)

我该如何解决这个问题?

0 个答案:

没有答案