![]() ![]()
|
TRIM function
Removes leading and trailing white space, or other specified characters, from a CHARACTER or LONGCHAR expression.
Syntax
expressiontrim-charsExamplesThe following procedure displays a menu that you can use to display Customer and Order information. The option numbers are displayed with leading spaces. The TRIM function removes the leading white space so the menu selection can be easily evaluated.
The following example reads a text file and breaks it into words. It assumes that all words are separated by at least one space character. It uses the TRIM function with one parameter to remove white space from the ends of each input line. It then uses the TRIM function with two parameters to remove any punctuation characters from each word.
Notes
- The TRIM function is double-byte enabled. The specified
expressionandtrim-charsarguments can contain double-byte characters. TRIM does not remove double-byte space characters by default.- A character string displays with the default format of x(8), unless you specify a format or use a statement such as DISPLAY @
literal.- You can use the DEBLANK option of the Format phrase to remove leading spaces for fields in the input buffer.
- If
expressionis a case-sensitive field or variable, thentrim-charsis also case sensitive. Otherwise,trim-charsis not case sensitive.See also
![]() |
OpenEdge Release 10.2B
|
![]() ![]()
|