#include <string_util.hpp>
|
void | explode (const string *input, string delimiter, vector< string > *output) |
|
vector< string > | explode (const string input, string delimiter) |
|
vector< string > | explode (const string *input, string delimiter) |
|
void | str_tolower (string &s) |
|
void | str_toupper (string &s) |
|
◆ explode() [1/3]
void string_util::explode |
( |
const string * |
input, |
|
|
string |
delimiter, |
|
|
vector< string > * |
output |
|
) |
| |
Split a string by a string and place the results in a std::vector<string>.
- Parameters
-
input | The input string to be split or exploded into parts. |
delimiter | The string of characters dividing or delimiting the parts. |
output | The list of results. |
◆ explode() [2/3]
vector< string > string_util::explode |
( |
const string |
input, |
|
|
string |
delimiter |
|
) |
| |
◆ explode() [3/3]
vector< string > string_util::explode |
( |
const string * |
input, |
|
|
string |
delimiter |
|
) |
| |
◆ str_tolower()
void string_util::str_tolower |
( |
string & |
s | ) |
|
Transform the input to lower case letters.
- Parameters
-
s | the string to be transformed. |
◆ str_toupper()
void string_util::str_toupper |
( |
string & |
s | ) |
|
Transform the input to upper case letters.
- Parameters
-
s | the string to be transformed. |
The documentation for this class was generated from the following files: