LydiaSyft
string_utilities.h
1 #ifndef LYDIASYFT_STRING_UTILITIES_H
2 #define LYDIASYFT_STRING_UTILITIES_H
3 
4 #include <string>
5 #include <vector>
6 
7 
8 namespace Syft {
9 
10  std::vector<std::string> split(const std::string& str, const std::string& delimiter = " ");
11  std::string trim(const std::string& str);
12  std::string to_lower_copy(const std::string& str);
13  std::string to_upper_copy(const std::string& str);
14 }
15 
16 #endif //LYDIASYFT_STRING_UTILITIES_H