LSTRIP
Strip characters from the left side (start) of a string
Example Usage
LSTRIP("ABC123", "A") -> "BC123"
LSTRIP("ABC123", "BA") -> "C123"
LSTRIP("x!0ABC123", "30x!") -> "ABC123"
Overview
Function signature
LSTRIP(value, chars)
Category
String
Return data type
string
Arguments
Name | DataType | List Options | Description |
---|---|---|---|
value | string | The string from which to remove leading characters | |
chars | string | List of characters to remove from the start of the string; repeats until a non-match is found |