There won't be an inbuilt TRIM function (to do LTRIM and RTRIM at once)...

by (no login)

..because you can write one yourself:
FUNCTION TRIM$(A$)
TRIM$=LTRIM$(RTRIM$(A$))
EXIT FUNCTION

Posted on Apr 14, 2008, 9:43 PM

Respond to this message   

Return to Index


Response TitleAuthor and Date
* Well I don't need a ROUND function either then thankyou on Apr 15
 *How were you planning on rounding a DOUBLE to a 64 BIT INTEGER then? on Apr 15
  * Can't you do DEF FN ROUND(X)=SGN(X)*INT(ABS(X)+0.5) ?qbguy on Apr 15