TDME2 1.9.121
Static Public Member Functions | List of all members
StringTools Class Referencefinal

String tools class. More...

#include <tdme/utilities/StringTools.h>

Collaboration diagram for StringTools:
Collaboration graph

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...
 

Detailed Description

String tools class.

Author
Andreas Drewke
Version
$Id$

Definition at line 19 of file StringTools.h.

Member Function Documentation

◆ endsWith()

static const bool endsWith ( const string &  src,
const string &  suffix 
)
inlinestatic

Checks if string ends with suffix.

Parameters
srcsource string
suffixsuffix string
Returns
bool

Definition at line 49 of file StringTools.h.

◆ equalsIgnoreCase()

bool equalsIgnoreCase ( const string &  string1,
const string &  string2 
)
static

Checks if string equals ignoring case.

Parameters
string1string 1
string2string 2
Returns
equals

Definition at line 43 of file StringTools.cpp.

◆ firstIndexOf() [1/2]

static int32_t firstIndexOf ( const string &  src,
char  what 
)
inlinestatic

Finds first index of given character.

Parameters
srcsource string
whatwhat
Returns
index or -1 if not found

Definition at line 93 of file StringTools.h.

◆ firstIndexOf() [2/2]

static int32_t firstIndexOf ( const string &  src,
const string &  what 
)
inlinestatic

Finds first index of characters provided within given string.

Parameters
srcsource string
whatwhat
Returns
index or -1 if not found

Definition at line 103 of file StringTools.h.

◆ lastIndexOf() [1/2]

static int32_t lastIndexOf ( const string &  src,
char  what 
)
inlinestatic

Finds last index of given character.

Parameters
srcsource string
whatwhat
Returns
index or -1 if not found

Definition at line 113 of file StringTools.h.

◆ lastIndexOf() [2/2]

static int32_t lastIndexOf ( const string &  src,
const string &  what 
)
inlinestatic

Finds last index of characters provided within given string.

Parameters
srcsource string
whatwhat
Returns
index or -1 if not found

Definition at line 123 of file StringTools.h.

◆ regexMatch()

bool regexMatch ( const string &  src,
const string &  pattern 
)
static

Do regex pattern matching.

Parameters
srcsource string to test
patternpattern
Returns
if patter matches

Definition at line 100 of file StringTools.cpp.

◆ regexReplace()

const string regexReplace ( const string &  src,
const string &  pattern,
const string &  by 
)
static

Replace regex pattern with given string.

Parameters
srcsource string to operate on
patternpattern to search
bystring that will replace pattern occurrances

Definition at line 104 of file StringTools.cpp.

◆ replace() [1/2]

const string replace ( const string &  src,
const char  what,
const char  by,
int  beginIndex = 0 
)
static

Replace char with another char.

Parameters
srcsource string to be processed
whatwhat to replace
byto replace by
beginIndexindex to begin with
Returns
new string

Definition at line 27 of file StringTools.cpp.

◆ replace() [2/2]

const string replace ( const string &  src,
const string &  what,
const string &  by,
int  beginIndex = 0 
)
static

Replace string with another string.

Parameters
srcsource string to be processed
whatwhat to replace
byto replace by
beginIndexindex to begin with
Returns
new string

Definition at line 33 of file StringTools.cpp.

◆ startsWith()

static const bool startsWith ( const string &  src,
const string &  prefix 
)
inlinestatic

Checks if string starts with prefix.

Parameters
srcsource string
prefixprefix string
Returns
bool

Definition at line 29 of file StringTools.h.

◆ substring() [1/2]

static const string substring ( const string &  src,
int32_t  beginIndex 
)
inlinestatic

Returns substring of given string from begin index.

Parameters
srcsource string
beginIndexbegin index
Returns
new string

Definition at line 133 of file StringTools.h.

◆ substring() [2/2]

static const string substring ( const string &  src,
int32_t  beginIndex,
int32_t  endIndex 
)
inlinestatic

Returns substring of given string from begin index to end index.

Parameters
srcsource string
beginIndexbegin index
endIndexend index
Returns
new string

Definition at line 154 of file StringTools.h.

◆ tokenize()

const vector< string > tokenize ( const string &  str,
const string &  delimiters 
)
static

Tokenize.

Parameters
strstring to tokenize
delimitersdelimiters
Returns
tokens

Definition at line 108 of file StringTools.cpp.

◆ toLowerCase()

const string toLowerCase ( const string &  src)
static

Transform string to lower case.

Parameters
srcsource string
Returns
transformed string

Definition at line 88 of file StringTools.cpp.

◆ toUpperCase()

const string toUpperCase ( const string &  src)
static

Transform string to upper case.

Parameters
srcsource string
Returns
transformed string

Definition at line 94 of file StringTools.cpp.

◆ trim()

const string trim ( const string &  src)
static

Trim string.

Parameters
srcsource string
Returns
trimmed string

Definition at line 51 of file StringTools.cpp.

◆ viewEndsWith()

static const bool viewEndsWith ( const string_view &  src,
const string &  suffix 
)
inlinestatic

Checks if string ends with suffix.

Parameters
srcsource string
suffixsuffix string
Returns
bool

Definition at line 61 of file StringTools.h.

◆ viewStartsWith()

static const bool viewStartsWith ( const string_view &  src,
const string &  prefix 
)
inlinestatic

Checks if string starts with prefix.

Parameters
srcsource string
prefixprefix string
Returns
bool

Definition at line 39 of file StringTools.h.

◆ viewSubstring() [1/2]

static const string_view viewSubstring ( const string_view &  src,
int32_t  beginIndex 
)
inlinestatic

Returns substring of given string from begin index.

Parameters
srcsource string
beginIndexbegin index
Returns
new string

Definition at line 143 of file StringTools.h.

◆ viewSubstring() [2/2]

static const string_view viewSubstring ( const string_view &  src,
int32_t  beginIndex,
int32_t  endIndex 
)
inlinestatic

Returns substring of given string from begin index to end index.

Parameters
srcsource string
beginIndexbegin index
endIndexend index
Returns
new string

Definition at line 165 of file StringTools.h.

◆ viewTrim()

const string_view viewTrim ( const string_view &  src)
static

Trim string.

Parameters
srcsource string
Returns
trimmed string

Definition at line 76 of file StringTools.cpp.


The documentation for this class was generated from the following files: