blob: fe0610bbf2a10e98f7c1e402222e37758112cbf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <string>
#include <vector>
namespace bot {
namespace utils {
namespace string {
std::vector<std::string> split_text(const std::string &text,
char delimiter);
std::string join_vector(const std::vector<std::string> &vec,
char delimiter);
std::string join_vector(const std::vector<std::string> &vec);
}
}
}
|