returns next token, "" if done or first empty token
| 723 | |
| 724 | /// returns next token, "" if done or first empty token |
| 725 | std::string TokenNext(std::string& in, std::string delim) { |
| 726 | std::string out; |
| 727 | if (GetTokenNext(in, delim, out)) { |
| 728 | return out; |
| 729 | } else { |
| 730 | return ""; |
| 731 | } |
| 732 | } |
| 733 | |
| 734 | /// output all vector values separated by delimiter |
| 735 | std::string VectorDelimited(const std::vector<std::string>& items, const std::string& delimiter) { |
nothing calls this directly
no test coverage detected