To All Users of R:BASE 7.5 and V-8 Turbo for Windows:

The latest updates of R:BASE 7.5 (Build:7.5.25.30412)
and V-8 Turbo for Windows (Build:8.0.12.30412) include
the following new String Manipulation Functions:

. ((TRIM(text))
. ((LTRIM(text))
. ((RTRIM(text))

-- ((TRIM(text))
Trims leading as well as trailing blanks from text,
returning a text string.

In the following example, the value of vStrim is
the text string ABCDE without the leading as well
as trailing blanks.

SET VARIABLE vStrim = (TRIM('    ABCDE   '))

-- ((LTRIM(text))
Trims leading blanks from text, returning a text
string.

In the following example, the value of vStrim is
the text string ABCDE without the leading blanks.

SET VARIABLE vStrim = (STRIM('    ABCDE'))

-- (RTRIM(text))
Trims trailing blanks from text, returning a text
string. This is similar to the existing STRIM
function for string manipulation.

In the following example, the value of vStrim is
the text string ABCDE without the trailing blanks.

SET VARIABLE vStrim = (STRIM('ABCDE    '))

Enjoy and make sure to have fun!

Very Best R:egards,

Razzak.

Reply via email to