qb45advr.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$ Function Details
  QuickSCREEN      Details      Example      Contents      Index
──────────────────────────────────────────────────────────────────────────────
LEFT$ Function Details
 
Syntax
  LEFT$(stringexpression,n)
 
The argument stringexpression can be any string variable, string constant,
or string expression.
 
The argument n is a numeric expression in the range 0-32,767 indicating
how many characters are to be returned.
 
If n is greater than the number of characters in stringexpression, the
entire string is returned. To find the number of characters in
stringexpression, use LEN(stringexpression).
 
If n is zero, the null string (length zero) is returned.