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