Skip to main content

RTRIM

A string function that returns a string with the trailing blanks removed.

Synopsis

RTRIM(string-expression)

{fn RTRIM(string-expression)}

Arguments

Argument Description
string-expression A string expression, which can be the name of a column, a string literal, or the result of another scalar function, where the underlying data type can be represented as any character type (such as CHAR or VARCHAR).

Description

RTRIM removes the trailing blanks from a string expression, and returns the string as type VARCHAR. If string-expression is NULL, RTRIM returns NULL. If string-expression is a string consisting entirely of blank spaces, RTRIM returns the empty string ('').

RTRIM leave leading blanks; to remove leading blanks, use LTRIM. To remove leading and/or trailing characters of any type, use TRIM. To pad a string with trailing blanks or other characters, use RPAD. To create a string of blanks, use SPACE.

Note that RTRIM can be used as an ODBC scalar function (with the curly brace syntax) or as an SQL general function.

Example

The following Embedded SQL example removes the five trailing blanks from the string. It leaves the five leading blanks:

   SET a="     Test string with 5 leading and 5 trailing spaces.     "
   &sql(SELECT {fn RTRIM(:a)} INTO :b)
   IF SQLCODE'=0 {
     WRITE !,"Error code ",SQLCODE }
   ELSE {
     WRITE !,"Before RTRIM",!,"start:",a,":end"
     WRITE !,"After RTRIM",!,"start:",b,":end" }

Returns:

Before RTRIM
start:     Test string with 5 leading and 5 trailing spaces.     :end
After RTRIM
start:     Test string with 5 leading and 5 trailing spaces.:end

See Also

LTRIM TRIM RPAD SPACE

FeedbackOpens in a new tab