strRTrim Function

Deletes all trailing blanks in a string.


str strRTrim(str _text)

Parameter

Description

_text

The string from which to remove the trailing blanks.

The string equivalent to text without any trailing blanks.

The strRTrim function is complementary to the strLTrim function.

// Returns the string ABC-DEFG-.
strRTrim("ABC-DEFG-    ");

Community Additions

ADD
Show: