left( string, length)
Returns a portion of the specified string, starting from the first character on the left and continuing for length characters.
Mid, Right
print left("Hello", 2)
will display
He
0.9.5b