11auto ltrim(
const std::string& str) -> std::string;
13auto rtrim(
const std::string& str) -> std::string;
15auto trim(
const std::string& str) -> std::string;
19auto replace(
const std::string& subject,
const std::string& search,
const std::string&
replace) -> std::string;
21auto to_upper(
const std::string& str) -> std::string;
23auto to_lower(
const std::string& str) -> std::string;
26auto extract_substring(
const std::string& str,
const std::string& from,
const std::string& to) -> std::string;
30void ltrim(std::string& str);
32void rtrim(std::string& str);
34void trim(std::string& str);
36void replace(std::string& subject,
const std::string& search,
const std::string&
replace);
void rtrim(std::string &str)
void replace(std::string &str, const std::string &search, const std::string &replace)
void to_lower(std::string &str)
void trim(std::string &str)
void to_upper(std::string &str)
void ltrim(std::string &str)
auto tokenize(const std::string &str, const std::string &delimiters) -> string_tokens_t
auto replace(const std::string &str, const std::string &search, const std::string &replace) -> std::string
auto extract_substring(const std::string &str, const std::string &from, const std::string &to) -> std::string
std::vector< std::string > string_tokens_t
auto to_lower(const std::string &str) -> std::string
auto trim(const std::string &str) -> std::string
auto ltrim(const std::string &str) -> std::string
auto to_upper(const std::string &str) -> std::string
auto rtrim(const std::string &str) -> std::string