Hey, what's the easiest way to convert a C++ std::string to another std::string, which has all the unprintable characters escaped?
for example for the string of length two which the content 0x61,0x01 - the result string might be "a\x01", or "a%01"
Just looking for the easiest already-implemented solution. Specific output format is less important.
Thanks, Dan.