advr.hlp (Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
LEFT$, RIGHT$ Functions Details
  Summary  Details  Example                Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
 LEFT$(stringexpression$, n%)
 RIGHT$(stringexpression$, n%)
 
 Usage Notes
   ■ If n% is 0, the null string (length 0) is returned.
 
   ■ If n% is greater than or equal to the number of characters in
     stringexpression$, the entire string is returned.
 
   ■ To find the number of characters in stringexpression$, use:
 
         LEN(stringexpression$)
 
     See: LEN Function