Static Public Member Functions | |
static char[] | replace (char[] source, char match, char replacement) |
static int | indexOf (char[] source, char match) |
static int | indexOf (char[] source, char match, int start) |
static int | indexOf (char[] source, char[] match) |
static int | indexOf (char[] source, char[] match, int start) |
static char[] | trim (char[] source) |
static char[][] | split (char[] src, char[] delim) |
static char[] | tolower (inout char[] src) |
Definition at line 67 of file Text.d.
|
Replace all instances of one char with another (in place) Definition at line 75 of file Text.d. References memchr(). |
|
Return the index of the first instance of 'match' |
|
Return the index of the first instance of 'match', starting at position 'start' Definition at line 108 of file Text.d. References memchr(). |
|
Return the index of the first instance of 'match' Definition at line 125 of file Text.d. References indexOf(). |
|
Return the index of the first instance of 'match', starting at position 'start' |
|
Trim the provided string by stripping whitespace from both ends. Returns a slice of the original content. |
|
|
|
in-place conversion to lowercase |