left
Description
Returns count characters from the left side of string , where count and string are the arguments to the function.
Syntax
left( string, charCount )
Examples
left("hello", 2) //returns "he" left("hello", 0) //returns "" left("hello", 5) //returns "hello"