Monday 28 December 2015

strRTrim Function

strRTrim Function [AX 2012]


Removes the trailing space characters from the end of a string.
str strRTrim(str _text)

Parameters

Parameter
Description
_text
The string from which to remove the trailing space characters.

Return Value

A copy of the specified string without trailing space characters.

Remarks

  • strRTrim("ABC-DEFG- "); //Returns the string "ABC-DEFG-".
  • strRTrim(" CD "); //Returns " CD".
The strRTrim function is complementary to the strLTrim function.

No comments:

Post a Comment