Returns n-characters starting from the left of
string.
String may be a constant or variable string.
String functions may not be nested.
A$ = LEFT("this is a test",5) + RIGHT(B$,3) ' valid string operation
A$ = LEFT( "this "+b$,5) ' NOT ALLOWED nested operation