Skip to main content

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

NameDataTypeList Options                          Description
valuestringThe string from which to remove leading characters
charsstringList of characters to remove from the start of the string; repeats until a non-match is found