This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
travelguide/env/strings.hpp

40 lines
594 B
C++

#pragma once
#include "../std/string.hpp"
#include "../std/sstream.hpp"
namespace str
{
template <class T> string ToString(T const & t)
{
ostringstream ss;
ss << t;
return ss.str();
}
void Trim(string & s);
string MakeNormalizeAndLowerUtf8(string const & s);
template <class ToDo>
void Tokenize(string const & s, char const * delims, ToDo toDo)
{
size_t i = 0;
while (i < s.size())
{
size_t j = s.find_first_of(delims, i);
if (j == string::npos)
j = s.size();
if (j > i)
{
toDo(s.substr(i, j-i));
i = j+1;
}
else
++i;
}
}
}