const char *regex = R"[\r\n]+";Or multiline source code for an embedded language:
const char *code = R" line one line two ";You can use another delimiter, eg:
const char *saying = R|He said "hello"|;
const char *regex = R"[\r\n]+";Or multiline source code for an embedded language:
const char *code = R" line one line two ";You can use another delimiter, eg:
const char *saying = R|He said "hello"|;