6#ifndef YODA_STRINGUTILS_H
7#define YODA_STRINGUTILS_H
21 struct bad_lexical_cast :
public std::runtime_error {
22 bad_lexical_cast(
const std::string& what) : std::runtime_error(what) {}
26 template<
typename T,
typename U>
27 T lexical_cast(
const U& in) {
34 }
catch (
const std::exception& e) {
35 throw bad_lexical_cast(e.what());
42 inline std::string toStr(
const T& x) {
45 return lexical_cast<std::string>(x);
50 inline double toDbl(
const std::string& s) {
55 return std::numeric_limits<double>::quiet_NaN();
61 inline std::string toLower(
const std::string& s) {
63 std::transform(out.begin(), out.end(), out.begin(), (
int(*)(
int)) tolower);
69 inline std::string toUpper(
const std::string& s) {
71 std::transform(out.begin(), out.end(), out.begin(), (
int(*)(
int)) toupper);
77 inline std::string encodeForXML(
const std::string& in) {
79 typedef std::pair<std::string, std::string> CharsToEntities;
80 std::vector<CharsToEntities> cs2es;
81 cs2es.push_back(std::make_pair(
"&",
"&"));
82 cs2es.push_back(std::make_pair(
"<",
"<"));
83 cs2es.push_back(std::make_pair(
">",
">"));
84 for (std::vector<CharsToEntities>::const_iterator c2e = cs2es.begin(); c2e != cs2es.end(); ++c2e) {
85 std::string::size_type pos = -1;
86 while ( ( pos = out.find(c2e->first, pos + 1) ) != std::string::npos ) {
87 out.replace(pos, 1, c2e->second);
95 inline bool contains(
const std::string& s,
const std::string& sub) {
96 return s.find(sub) != std::string::npos;
100 inline bool startswith(
const std::string& s,
const std::string& sub) {
101 return s.find(sub) == 0;
105 inline bool endswith(
const std::string& s,
const std::string& sub) {
106 const size_t pos = s.find(sub);
107 return pos != std::string::npos && pos == (s.size()-sub.size());
112 inline std::string& iltrim(std::string& s) {
113 s.erase(s.begin(), std::find_if(s.begin(), s.end(), [](
unsigned char c){ return !std::isspace(c); }));
119 inline std::string& irtrim(std::string& s) {
120 s.erase(std::find_if(s.rbegin(), s.rend(), [](
unsigned char c){ return !std::isspace(c); }).base(), s.end());
125 inline std::string& itrim(std::string& s) {
126 return iltrim(irtrim(s));
131 inline std::string ltrim(
const std::string& s) {
137 inline std::string rtrim(
const std::string& s) {
143 inline std::string trim(
const std::string& s) {
149 inline std::vector<std::string> split(
const std::string& s,
const std::string& sep) {
150 std::vector<std::string> dirs;
153 const size_t delim_pos = tmp.find(sep);
154 if (delim_pos == std::string::npos)
break;
155 const std::string dir = tmp.substr(0, delim_pos);
156 if (dir.length()) dirs.push_back(dir);
157 tmp.replace(0, delim_pos+1,
"");
159 if (tmp.length()) dirs.push_back(tmp);
166 inline std::vector<std::string> pathsplit(
const std::string& path) {
167 return split(path,
":");
194 template <
typename T>
195 T getEnvParam(
const std::string& name,
const T& fallback) {
196 char* env = getenv(name.c_str());
197 return env ? lexical_cast<T>(env) : fallback;
Anonymous namespace to limit visibility.