utils: split: Rename all splitBy*() variants to split()
This commit is contained in:
6
utils.h
6
utils.h
@@ -11,9 +11,9 @@
|
||||
namespace utils
|
||||
{
|
||||
|
||||
std::vector<std::string> splitByChar(const std::string &str, char delim);
|
||||
std::vector<std::string> splitByString(const std::string &str, const std::string &delim);
|
||||
std::vector<std::string> splitByRegex(const std::string &str, const std::string ®ex);
|
||||
std::vector<std::string> split(const std::string &str, char delim);
|
||||
std::vector<std::string> split(const std::string &str, const std::string &delim);
|
||||
std::vector<std::string> split(const std::string &str, std::regex ®ex);
|
||||
std::string urldecode(std::string_view str);
|
||||
std::string strreplace(const std::string &str, const std::string &search, const std::string &replace);
|
||||
|
||||
|
مرجع در شماره جدید
Block a user