Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Harbour Version 0.37 (c) reference Guid - Norton Guide http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]

RTRIM()

Remove trailing spaces from a string.
---------------------------------------------------------------------------------

 Syntax

        RTRIM(<cExpression>)   --> cString  

 Arguments

        <cExpression>     Any character expression    

 Returns

        <cString>         A formated string with out any blank spaced.  

 Description

      This function returns the value of <cString> with any trailing blank
      removed.

      This function is indentical to RTRIM() and the opposite of LTRIM().
      Together with LTRIM(),this function equated to the ALLTRIM()
      function.

 Examples

      ? RTrim("HELLO")     //               "HELLO"
      ? RTrim( "" )       //                ""
      ? RTrim( "UA   " )  //                "UA"
      ? RTrim( "   UA" )  //                "   UA"

 Tests

      See Examples

Status

      Ready

 Compliance

      This function is Ca-Clipper compilant

 Platforms

      All

 Files

      Library is rtl



See Also: ALLTRIM() LTRIM() TRIM()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson