| 227 | } |
| 228 | |
| 229 | std::vector<std::string> string_split(const std::string& text, const char* delims) |
| 230 | { |
| 231 | std::vector<std::string> tok; |
| 232 | string_split(text, delims, tok); |
| 233 | return tok; |
| 234 | } |
| 235 | |
| 236 | // String split with multiple delims |
| 237 | // https://stackoverflow.com/a/7408245/18942 |
no test coverage detected