Left(
     string:string,
     int:length
)
string

Arguments

string

Input string to return the left portion of.

length

Length of string to return.

Return value

Specified portion of the string.

Description

Returns length characters from the left side of string.

Example:

Output( Left("Hello World", 5) );
--> Hello

See also:
Mid
Right