我在regex_search上做错了什么

时间:2013-09-08 20:45:39

标签: c++ c++11

我正在尝试使用以下代码 一直打印0,期望它是1

std::regex start ("^Hello");
string hel("Hello I am here");
cout<< std::regex_search(hel ,start)<<endl; // trying to find the the string at the start

0 个答案:

没有答案