TRIMSTART function
Synopsis
This function
returns a string which is the passed string with the specified
character occurrences removed from the beginning of the
string.
Variations
TRIMSTART(
String,
Characters)
Removes the specified character
occurrences from the beginning of the string.
Details |
Examples |
Details and examples
Parameters
String
Specifies the string which should be trimmed.
Supported types: String.
Characters
Specifies the characters that should be removed from the
beginning of the specified string.
Supported types: String.
Returns
Examples
1. |
The following example returns "Matrox Design Assistant"
TRIMSTART("Matrox
Design Assistant, "rmat")
|
2. |
The following example returns "ox DA"
TRIMSTART("Matrox
DA", "rMat")
|