12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef STRINGUTILS_H
- #define STRINGUTILS_H
- #include <vector>
- #include <string>
- namespace NICE {
- std::string itostr(int integer);
- std::vector<std::string> splitString(const std::string &s, char separator);
- void splitString(const std::string &s, char separator,
- std::vector<std::string>& result);
- std::vector<std::vector<std::string> > splitStringVector(
- const std::vector<std::string> &inlist,
- char separator);
- std::string replaceChar(const std::string& s, char oldChar, char newChar);
-
- }
- #endif
|