20 lines
396 B
C++
20 lines
396 B
C++
|
//
|
||
|
// Created by hamac on 18.12.2024.
|
||
|
//
|
||
|
|
||
|
#include <string>
|
||
|
#include <sstream>
|
||
|
#include <vector>
|
||
|
|
||
|
class Utils {
|
||
|
static std::vector<std::string> split(const std::string &s, char delim) {
|
||
|
std::vector<std::string> elems;
|
||
|
std::stringstream ss(s);
|
||
|
std::string item;
|
||
|
while (std::getline(ss, item, delim)) {
|
||
|
elems.push_back(item);
|
||
|
}
|
||
|
return elems;
|
||
|
}
|
||
|
}
|