static std::string removeSpaces(std::string str) { str.erase(remove(str.begin(), str.end(), ' '), str.end()); return str; }