TRIMSTART
Syntax
TRIMSTART (string_expression)
Description
Returns the specified string_expression with all leading whitespace removed.
Arguments
string_expression | Any string . |
Returns
The string_expression with any leading whitespace removed.
Remarks
Whitespace refers to space, tabs, or certain Unicode characters identified as blanks..
Example
If MyEntity.Name contains the value " ACME Software ":
TRIMSTART(MyEntity.Name)
Returns: "ACME Software "