std::vector< std::string > strsplit(const std::string &s, char sep= ' ')
Split string into tokens using given separator.
std::vector< std::string > tokenize(const std::string &s, char sep= ' ', char esc= '\\', bool empty=false)
Split string into tokens using given separator and escape.