LEFT SubroutineUsage:
s = LEFT(s, n)
Description:
Returns a string with the left-most characters of s. The number of characters to return is indicated by n. If n is greater than or equal to the length of the string, then the entire string is returned.
For example, LEFT("Test", 2) returns "Te".
|