标签: 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