Just a small code fragment to help you through the night:
#include <iostream>
#include <sstream>
#include <string>
#include <boost/foreach.hpp>
std::string repr(const std::string& s)
{
std::ostringstream ss;
BOOST_FOREACH(const char c, s) {
if ((signed char)c < 32) {
Continue reading "repr for c++" »


