From MSDN, this code is used in order to match regular expression:
if (regex_match(s, m, regex { R"((\w+) (\w+))" }))
{
}
Yes; this notation is known as a "raw string literal", and was standardized in C++11. Further (non-MSDN) documentation can be found here.