utils: split: Rename all splitBy*() variants to split()

此提交包含在:
2021-04-17 12:41:22 +02:00
父節點 b995362d1f
當前提交 4dc688f9eb
共有 5 個檔案被更改,包括 13 行新增11 行删除

查看文件

@@ -159,7 +159,7 @@ std::vector<std::string> PageDaoSqlite::fetchCategories(std::string pagename, Qu
std::string PageDaoSqlite::ftsEscape(std::string input)
{
std::string result = "";
for(auto &str : utils::splitByChar(input, ' '))
for(auto &str : utils::split(input, ' '))
{
std::string tmp = utils::strreplace(str, "\"", "\"\"");
tmp = "\"" + tmp + "\"" + " ";