Any idea why the following code prints "no match"? Something related with the compiler or the version of the library? I compiled with g++ a.cpp.
#include <tr1/regex>
#include <iostream>
#include <string>
using namespace std;
int main()
{
const std::tr1::regex pattern("(\\w+day)");
std::string weekend = "Saturday and Sunday";
std::tr1::smatch result;
bool match = std::tr1::regex_search(weekend, result, pattern);
if(match)
{
for(size_t i = 1; i < result.size(); ++i)
{
std::cout << result[i] << std::endl;
}
}else
std::cout << "no match" << std::endl;
return 0;
}
assert( std::tr1::regex_search("a", std::tr1::regex("a")) );– Robᵩ Apr 9 '12 at 20:07