Mwnci ltrim() Function

Syntax

ltrim(string,[cutset])

Description

ltrim() returns a string with all leading characters contained in cutset removed. If no cutset is defined, then all leading white spaces will be removed.

Example

println(ltrim("!!!Hi There!!!", "!"))


Hi There!!!