#include <vector>
#include <string>
#include <sstream>
Go to the source code of this file.
|
std::string | toLower (const std::string &str) |
|
std::string | toUpper (const std::string &str) |
|
std::vector< std::string > | tokenize (const std::string &str, const std::string &delimiters, bool trimEmpty=false) |
|
std::string | strip (const std::string &str) |
|
std::string | pad (int n, int size, char paddingChar=' ', bool leftPadded=false) |
|
std::string | pad (const std::string &str, int size, char paddingChar=' ', bool leftPadded=false) |
|