| 293 | } |
| 294 | |
| 295 | inline void trimString(std::string &str) { |
| 296 | str.erase(0, str.find_first_not_of(' ')); |
| 297 | str.erase(str.find_last_not_of(' ') + 1); |
| 298 | } |
| 299 | |
| 300 | inline void |
| 301 | splitString(const std::string &str, std::vector<std::string> &strVec, char splitChar) { |