2016-01-12 03:41:44 +00:00
|
|
|
//
|
2017-03-04 05:08:22 +00:00
|
|
|
// Created by koncord on 04.03.17.
|
2016-01-12 03:41:44 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#include "Utils.hpp"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2016-08-02 09:32:10 +00:00
|
|
|
const vector<string> Utils::split(const string &str, int delimiter)
|
|
|
|
{
|
|
|
|
string buffer;
|
|
|
|
vector<string> result;
|
|
|
|
|
|
|
|
for (auto symb:str)
|
|
|
|
if (symb != delimiter)
|
|
|
|
buffer += symb;
|
|
|
|
else if (!buffer.empty())
|
|
|
|
{
|
|
|
|
result.push_back(move(buffer));
|
|
|
|
buffer.clear();
|
|
|
|
}
|
|
|
|
if (!buffer.empty())
|
|
|
|
result.push_back(move(buffer));
|
|
|
|
|
|
|
|
return result;
|
2017-03-04 05:08:22 +00:00
|
|
|
}
|