Skip to content
StringHelpers

Unescape

Internal helper function
static std::string Unescape(const std::string str)

A static helper function.

Will return str, but json-unescaped.


Example:

myString:
{\n\t\"name\": \"Clontin\"\n}
C++:
StringHelpers::Unescape(myString);
Returns:
{
    "name": "Clontin"
}