diff options
author | Florent Le Coz <louiz@louiz.org> | 2013-11-12 23:43:43 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2013-11-12 23:48:10 +0100 |
commit | 5817a95b5ee89480788832be35679dfcd2ed833b (patch) | |
tree | b4db0db18a195b11f820247b78bfc4df5dba8c14 /src/utils/split.cpp | |
parent | b60cbda4f93bb83e36b29f5cba975b94b833663d (diff) | |
download | biboumi-5817a95b5ee89480788832be35679dfcd2ed833b.tar.gz biboumi-5817a95b5ee89480788832be35679dfcd2ed833b.tar.bz2 biboumi-5817a95b5ee89480788832be35679dfcd2ed833b.tar.xz biboumi-5817a95b5ee89480788832be35679dfcd2ed833b.zip |
Basic handling of modes, both ways
Diffstat (limited to 'src/utils/split.cpp')
-rw-r--r-- | src/utils/split.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/utils/split.cpp b/src/utils/split.cpp new file mode 100644 index 0000000..82852ee --- /dev/null +++ b/src/utils/split.cpp @@ -0,0 +1,18 @@ +#include <utils/split.hpp> + +namespace utils +{ + std::vector<std::string> split(const std::string &s, const char delim, const bool allow_empty) + { + std::vector<std::string> ret; + std::stringstream ss(s); + std::string item; + while (std::getline(ss, item, delim)) + { + if (item.empty() && !allow_empty) + continue ; + ret.emplace_back(std::move(item)); + } + return ret; + } +} |