| 342 | } |
| 343 | |
| 344 | void SplitStringByDelimiter(const StringPiece& full, |
| 345 | const char* delim, |
| 346 | std::vector<std::string>* result) |
| 347 | { |
| 348 | return SplitString(full, delim, result); |
| 349 | } |
| 350 | |
| 351 | /** 功能: 把一个字符串划分成多个字符串 |
| 352 | * 参数: |
nothing calls this directly
no test coverage detected