strLTrim Function

Removes leading blanks from a text string.


str strLTrim(str text)

Parameter

Description

text

The string to delete the leading blanks from.

The string equivalent for the text whose leading blanks have been removed.

The strLTrim function is complementary to the strRTrim function.

// Returns the text string "ABC-DEFG".
strLTrim("   ABC-DEFG");

Community Additions

ADD
Show: