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

