home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
xbase
/
library
/
clipper
/
rlib
/
rl_rjust.prg
< prev
next >
Wrap
Text File
|
1989-02-18
|
257b
|
9 lines
* 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))