00001 #ifndef _STRING_H__ 00002 #define _STRING_H__ 00003 00004 #include <vector> 00005 #include <string> 00006 00007 std::string strip(const std::string &s); 00008 std::vector<std::string> split(const std::string &s, char delim); 00009 00010 #endif