#include <iconv.h>
+#include <algorithm>
#include <cstdlib>
#include <cstdarg>
#include <cstdio>
return TrimR(TrimL(res));
}
//---------------------------------------------------------------------------
-std::string ToLower(const std::string & value)
+std::string ToLower(std::string value)
{
- std::string res;
- for (std::string::size_type pos = 0; pos < value.length(); ++pos)
- res += tolower(value[pos]);
- return res;
+ std::transform(value.begin(), value.end(), value.begin(), ::tolower);
+ return value;
}
//---------------------------------------------------------------------------
-std::string ToUpper(const std::string & value)
+std::string ToUpper(std::string value)
{
- std::string res;
- for (std::string::size_type pos = 0; pos < value.length(); ++pos)
- res += toupper(value[pos]);
- return res;
+ std::transform(value.begin(), value.end(), value.begin(), ::toupper);
+ return value;
}
//---------------------------------------------------------------------------
#ifdef WIN32
}
return true;
}
+
+std::string ToPrintable(const std::string & src)
+{
+ std::string dest;
+
+ for (size_t i = 0; i < src.size(); ++i)
+ if (std::isprint(src[i]))
+ dest += src[i];
+ else
+ dest += "\\" + x2str(src[i]);
+
+ return dest;
+}