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