Difference between revisions of "TRIM()"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) |
Yvonnemilne (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
==Class== | ==Class== | ||
String Data | String Data | ||
Line 15: | Line 12: | ||
==See Also== | ==See Also== | ||
− | [[ | + | [[ALLTRIM()]], [[LTRIM()]], [[RTRIM()]] |
Line 39: | Line 36: | ||
[[Category:Documentation]] | [[Category:Documentation]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
+ | [[Category:String Data]] | ||
+ | [[Category:String Data Functions]] |
Revision as of 16:07, 2 June 2009
Class
String Data
Purpose
Function to remove trailing blanks
Syntax
TRIM(<expC>)
See Also
Description
The TRIM() function is synonymous with the RTRIM() function. It removes trailing blank characters from the character expression <expC>. This function should only be used in conjunction with the RPAD() function when used in index expressions, since index keys must be fixed length.
Example
fname = "Christopher " sname = "Thompson " ? len(fname) 20 ? len(trim(fname)) 11 ? trim(fname)+" "+trim(sname) Christopher Thompson
Products
Recital Database Server, Recital Mirage Server, Recital Terminal Developer