| 211 | } |
| 212 | |
| 213 | std::vector<std::string> string_split(const std::string& text, const char* delims) { |
| 214 | std::vector<std::string> tok; |
| 215 | string_split(text, delims, tok); |
| 216 | return tok; |
| 217 | } |
| 218 | |
| 219 | // String split with multiple delims |
| 220 | // https://stackoverflow.com/a/7408245/18942 |
no test coverage detected