In C++ 11, you can create a raw string like this
string rawString = R"delim(STRING_WITH_SPECIAL_CHARACTERS)delim";
It will ignore all the special characters. However, this feature is not implemented in GCC 4.4 or older. Is there a boost equivalent for this feature? If not, what is the best way to create a raw string in an older version of C++ implementation.
Thanks.