Index // Left


Format:

left( string, length )

Description:

Returns a portion of the specified string, starting from the first character on the left and continuing for length characters.

See Also:

Mid, Right

Example:

The line

print left("Hello", 2)
will print
He

Revised:

0.9.5b