Site hosted by Angelfire.com: Build your free website today!
NAME
  LTRIM$, RTRIM$ Functions

SYNOPSIS
  LTRIM$(stringexpression$)
  RTRIM$(stringexpression$)
      o stringexpression$    Any string expression.

DESCRIPTION
  Remove leading and trailing spaces from a string.

  Example:
      a$ = "    Basic    "
      PRINT "*" + a$ + "*"            'Output is:  *    Basic    *
      PRINT "*" + LTRIM$(a$) + "*"    'Output is:  *Basic    *
      PRINT "*" + RTRIM$(a$) + "*"    'Output is:  *    Basic*

SEE ALSO
  none