]> git.stg.codes - stg.git/commitdiff
Added Split utility.
authorMaxim Mamontov <faust.madf@gmail.com>
Thu, 29 May 2014 10:20:51 +0000 (13:20 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Fri, 9 Jan 2015 19:56:41 +0000 (21:56 +0200)
stglibs/common.lib/include/stg/common.h

index 0a4ef9495939d0fff36a31f2e20f504bc20fbe67..1dd8c1c72f7694c7049abdf2650e1b0851b3ec05 100644 (file)
@@ -33,6 +33,7 @@
 #include <ctime>
 #endif
 #include <string>
+#include <sstream>
 
 #include "stg/os_int.h"
 #include "stg/const.h"
@@ -96,7 +97,38 @@ std::string &   TrimL(std::string & val);
 std::string &   TrimR(std::string & val);
 std::string &   Trim(std::string & val);
 
-std::string     IconvString(const std::string & source, const std::string & from, const std::string & to);
+template <typename C, typename F>
+C Split(const std::string & value, char delim, F conv)
+{
+C res;
+size_t startPos = 0;
+size_t pos = value.find_first_of(delim);
+while (pos != std::string::npos)
+    {
+    res.push_back(conv(value.substr(startPos, pos - startPos)));
+    startPos = pos + 1;
+    pos = value.find_first_of(delim, pos);
+    }
+res.push_back(conv(value.substr(startPos, pos - startPos)));
+return res;
+}
+
+template <typename T>
+T FromString(const std::string & value)
+{
+T res;
+std::istringstream stream(value);
+stream >> res;
+return res;
+}
+
+template <typename C>
+C Split(const std::string & value, char delim)
+{
+    return Split<C>(value, delim, FromString);
+}
+
+std::string IconvString(const std::string & source, const std::string & from, const std::string & to);
 
 int ParseInt(const std::string & str, int * val);
 int ParseUnsigned(const std::string & str, unsigned * val);