Skip to content

trim_left

Signature

trim_left(string, string)

Description

Removes the leading characters found in the passed in string argument.

Examples

trim_left(' foobar ', 'fbr ') == 'oobar '
trim_left(' foobar ', 'fbr') == ' foobar '