home *** CD-ROM | disk | FTP | other *** search
- * Function: RJUSTIFY
- * Author..: Richard Low
- * Syntax..: RJUSTIFY( exp<C> )
- * Returns.: exp<C> with any trailing spaces put in front of exp<C>
-
- FUNCTION RJUSTIFY
- PARAMETER p_string
- RETURN (SPACE(LEN(p_string)-LEN(TRIM(p_string))) + TRIM(p_string))