Skip to content
Snippets Groups Projects
Commit c79e7b06 authored by Timon Habenicht's avatar Timon Habenicht
Browse files

adds StringVector to StringUtil

parent 7618cc12
No related branches found
No related tags found
No related merge requests found
......@@ -99,6 +99,17 @@ std::vector<int> StringUtil::toVector(const std::string& input)
return v;
}
std::vector<std::string> StringUtil::toStringVector(const std::string & input)
{
std::vector<std::string> v;
std::vector<std::string> inputEntries;
boost::algorithm::split(inputEntries, input, boost::is_any_of("\t\n "));
BOOST_FOREACH(std::string entry, inputEntries)
if (entry != "")
v.push_back(toString(entry));
return v;
}
template<typename T>
std::string StringUtil::toString(const T& t)
{
......
......@@ -26,6 +26,7 @@ public:
static VF_PUBLIC double toDouble(const std::string &input);
static VF_PUBLIC bool toBool(const std::string &input);
static VF_PUBLIC std::vector<int> toVector(const std::string& s);
static VF_PUBLIC std::vector<std::string> toStringVector(const std::string& s);
template<typename T>
static VF_PUBLIC std::string toString(const T& t);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment