|
Length
|
Returns the number of characters in
string.
|
|
Left
|
Extracts a substring from the left of
given string.
|
|
Right
|
Extracts a substring from the right of
given string.
|
|
Mid
|
Extracts a
substring of specified length.
|
|
TrimLeft
|
Removes a particular character or a
particular group of characters (targets) from the beginning of the
string.
|
|
TrimRight
|
Removes a particular character or a
particular group of characters (targets) from the end of the
string.
|
|
ToUpper
|
Converts given string to uppercase
string.
|
|
ToLower
|
Converts given
string to lowercase string.
|
|
Find
|
Searches
through given string for the first match of a specified substring.
|
|
ReverseFind
|
Searches
through given string for the last match of a specified character.
|
|
WildcardCompare
|
Compares given string with a pattern.
|
|
Tokenize
|
Returns array of tokens extracted from a given string.
|
|
RegularExpressionMatch
|
Checks
if string matches regular expression
pattern. |
|
RegularExpressionParse
|
Parses a regular expression and converts an input string into array
of tokens if string matches regular expression. |
|
Operator [ ]
|
Returns the character at a given position in the
string. |
|
Delete
|
Deletes a character or characters from a string. |
|
Remove
|
Removes indicated characters from a string. |
|
Replace
|
Replaces indicated characters with other characters. |