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).
Parameters
Parameter
|
Description
|
s
|
The string to trim.
|
ExamplesThe
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.
|
|
|
|