TDME2 1.9.121
|
String tools class. More...
#include <tdme/utilities/StringTools.h>
Static Public Member Functions | |
static const bool | startsWith (const string &src, const string &prefix) |
Checks if string starts with prefix. More... | |
static const bool | viewStartsWith (const string_view &src, const string &prefix) |
Checks if string starts with prefix. More... | |
static const bool | endsWith (const string &src, const string &suffix) |
Checks if string ends with suffix. More... | |
static const bool | viewEndsWith (const string_view &src, const string &suffix) |
Checks if string ends with suffix. More... | |
static const string | replace (const string &src, const char what, const char by, int beginIndex=0) |
Replace char with another char. More... | |
static const string | replace (const string &src, const string &what, const string &by, int beginIndex=0) |
Replace string with another string. More... | |
static int32_t | firstIndexOf (const string &src, char what) |
Finds first index of given character. More... | |
static int32_t | firstIndexOf (const string &src, const string &what) |
Finds first index of characters provided within given string. More... | |
static int32_t | lastIndexOf (const string &src, char what) |
Finds last index of given character. More... | |
static int32_t | lastIndexOf (const string &src, const string &what) |
Finds last index of characters provided within given string. More... | |
static const string | substring (const string &src, int32_t beginIndex) |
Returns substring of given string from begin index. More... | |
static const string_view | viewSubstring (const string_view &src, int32_t beginIndex) |
Returns substring of given string from begin index. More... | |
static const string | substring (const string &src, int32_t beginIndex, int32_t endIndex) |
Returns substring of given string from begin index to end index. More... | |
static const string_view | viewSubstring (const string_view &src, int32_t beginIndex, int32_t endIndex) |
Returns substring of given string from begin index to end index. More... | |
static bool | equalsIgnoreCase (const string &string1, const string &string2) |
Checks if string equals ignoring case. More... | |
static const string | trim (const string &src) |
Trim string. More... | |
static const string_view | viewTrim (const string_view &src) |
Trim string. More... | |
static const string | toLowerCase (const string &src) |
Transform string to lower case. More... | |
static const string | toUpperCase (const string &src) |
Transform string to upper case. More... | |
static bool | regexMatch (const string &src, const string &pattern) |
Do regex pattern matching. More... | |
static const string | regexReplace (const string &src, const string &pattern, const string &by) |
Replace regex pattern with given string. More... | |
static const vector< string > | tokenize (const string &str, const string &delimiters) |
Tokenize. More... | |
|
inlinestatic |
Checks if string ends with suffix.
src | source string |
suffix | suffix string |
Definition at line 49 of file StringTools.h.
|
static |
Checks if string equals ignoring case.
string1 | string 1 |
string2 | string 2 |
Definition at line 43 of file StringTools.cpp.
|
inlinestatic |
Finds first index of given character.
src | source string |
what | what |
Definition at line 93 of file StringTools.h.
|
inlinestatic |
Finds first index of characters provided within given string.
src | source string |
what | what |
Definition at line 103 of file StringTools.h.
|
inlinestatic |
Finds last index of given character.
src | source string |
what | what |
Definition at line 113 of file StringTools.h.
|
inlinestatic |
Finds last index of characters provided within given string.
src | source string |
what | what |
Definition at line 123 of file StringTools.h.
|
static |
Do regex pattern matching.
src | source string to test |
pattern | pattern |
Definition at line 100 of file StringTools.cpp.
|
static |
Replace regex pattern with given string.
src | source string to operate on |
pattern | pattern to search |
by | string that will replace pattern occurrances |
Definition at line 104 of file StringTools.cpp.
|
static |
Replace char with another char.
src | source string to be processed |
what | what to replace |
by | to replace by |
beginIndex | index to begin with |
Definition at line 27 of file StringTools.cpp.
|
static |
Replace string with another string.
src | source string to be processed |
what | what to replace |
by | to replace by |
beginIndex | index to begin with |
Definition at line 33 of file StringTools.cpp.
|
inlinestatic |
Checks if string starts with prefix.
src | source string |
prefix | prefix string |
Definition at line 29 of file StringTools.h.
|
inlinestatic |
Returns substring of given string from begin index.
src | source string |
beginIndex | begin index |
Definition at line 133 of file StringTools.h.
|
inlinestatic |
Returns substring of given string from begin index to end index.
src | source string |
beginIndex | begin index |
endIndex | end index |
Definition at line 154 of file StringTools.h.
|
static |
Tokenize.
str | string to tokenize |
delimiters | delimiters |
Definition at line 108 of file StringTools.cpp.
|
static |
Transform string to lower case.
src | source string |
Definition at line 88 of file StringTools.cpp.
|
static |
Transform string to upper case.
src | source string |
Definition at line 94 of file StringTools.cpp.
|
static |
Trim string.
src | source string |
Definition at line 51 of file StringTools.cpp.
|
inlinestatic |
Checks if string ends with suffix.
src | source string |
suffix | suffix string |
Definition at line 61 of file StringTools.h.
|
inlinestatic |
Checks if string starts with prefix.
src | source string |
prefix | prefix string |
Definition at line 39 of file StringTools.h.
|
inlinestatic |
Returns substring of given string from begin index.
src | source string |
beginIndex | begin index |
Definition at line 143 of file StringTools.h.
|
inlinestatic |
Returns substring of given string from begin index to end index.
src | source string |
beginIndex | begin index |
endIndex | end index |
Definition at line 165 of file StringTools.h.
|
static |
Trim string.
src | source string |
Definition at line 76 of file StringTools.cpp.