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 + "\"" + " ";