| 153 | } |
| 154 | |
| 155 | std::string StrFormat(const char* format, ...) { |
| 156 | va_list args; |
| 157 | va_start(args, format); |
| 158 | std::string tmp = StrFormatImp(format, args); |
| 159 | va_end(args); |
| 160 | return tmp; |
| 161 | } |
| 162 | |
| 163 | std::vector<std::string> StrSplit(const std::string& str, char delim) { |
| 164 | if (str.empty()) { |