Functions | |
std::vector< double > | split (char delim, std::string str) |
Split a string into a vector of doubles, given a delimitator. | |
std::vector< std::string > | splitLines (std::string str) |
Split the lines of a string. | |
void | toLower (std::string &str) |
Convert the characters of a string to lower case. | |
void | toUpper (std::string &str) |
Convert the characters of a string to upper case. |
std::vector<double> neuralpp::neuralutils::split | ( | char | delim, | |
std::string | str | |||
) |
Split a string into a vector of doubles, given a delimitator.
delim | Delimitator | |
str | String to be splitted |
std::vector<std::string> neuralpp::neuralutils::splitLines | ( | std::string | str | ) |
Split the lines of a string.
str | String to be splitted |
void neuralpp::neuralutils::toLower | ( | std::string & | str | ) |
Convert the characters of a string to lower case.
str | String to be converted |
void neuralpp::neuralutils::toUpper | ( | std::string & | str | ) |
Convert the characters of a string to upper case.
str | String to be converted |