#pragma once #include #include namespace StringUtil { std::vector split(std::string str, std::string sep); std::vector split(std::string str, char sep); std::vector splitClean(std::string str, std::string sep); std::vector splitClean(std::string str, char sep); std::string strip(std::string str, char c = ' '); std::string stripLeft(std::string str, char c = ' '); std::string stripRight(std::string str, char c = ' '); }