Functions - Left


Returns a String containing a specified number of characters from a string, starting at the beginning and working forwards.

Syntax

Left(source, length)

Parameters

sourceThe string from which characters are returned.
lengthThe number of characters to be taken from the string.

Example

This expression part evaluates to "Foo":

Left("FooBar", 3)