Ltrim

Returns a string with all leading white space characters removed.

White space characters include the ASCII space, horizontal tab, line feed, vertical tab, form feed, carriage return, and the Unicode space characters (Unicode category Zs).

Syntax

Ltrim(s)

Parameters

Parameter

Description

s

The string to trim.

Examples

The following expressions are examples that use the Ltrim function:

Expression

Returns

Ltrim(" ABCD")

"ABCD"

Ltrim(Rtrim(" Tony Blue "))

"Tony Blue"

See also Rtrim.

Ltrim(Address[0])

Removes any leading white space from the first occurrence of Address.

// Ethnio survey code removed