Static Public Methods |
std::string | trim (const std::string &s) |
| Returns a string identical to the given string but without leading or trailing HTABs or spaces. More...
|
void | split (std::vector< std::string > &v, const std::string &s, char delimiter, unsigned int maxSegments=INT_MAX) |
| splits a string into a vector of string segments based on the given delimiter. More...
|
template<typename T> unsigned int | split (T &output, const std::string &s, char delimiter, unsigned int maxSegments=INT_MAX) |
| splits a string into string segments based on the given delimiter and assigns the segments through an output_iterator. More...
|