Function reference
Remove specific characters from the beginning and the end of a string.
TrimChar ( string , string )
Argument | Description |
sourcestring | The string you want to process |
removestring | The string you want removed |
Data type: String
Returns sourcestring with leading and trailing occurrences of removestring removed.
Example 1
This expression returns RUTH:
LeftTrimChar( ‘xRUTHxx’ , ‘x’)
Last modified:
14 June 2021