std::string ToUpper(const std::string & value);
template <typename C, typename F>
+inline
C Split(const std::string & value, char delim, F conv)
{
C res;
{
res.push_back(conv(value.substr(startPos, pos - startPos)));
startPos = pos + 1;
- pos = value.find_first_of(delim, pos);
+ pos = value.find_first_of(delim, pos + 1);
}
res.push_back(conv(value.substr(startPos, pos - startPos)));
return res;
}
template <typename T>
+inline
T FromString(const std::string & value)
{
T res;
return res;
}
+template <>
+inline
+std::string FromString<std::string>(const std::string & value)
+{
+return value;
+}
+
template <typename C>
+inline
C Split(const std::string & value, char delim)
{
- return Split<C>(value, delim, FromString);
+ return Split<C>(value, delim, FromString<typename C::value_type>);
}
std::string IconvString(const std::string & source, const std::string & from, const std::string & to);