CLIPPED
The CLIPPED operator removes trailing
blank spaces (ASCII 32) of a string expression.
Syntax
expr CLIPPED 
- expr is a language expression.
 
Usage
This operator removes all trailing blank space (ASCII 32) of a string expression.
The CLIPPED operator is typically used to remove the trailing blanks of a CHAR value, which would be printed
otherwise.
Example
MAIN
  DISPLAY "Some text   " CLIPPED
END MAIN