 
      
      subleft()Extract a specified number of characters from the left side of a string
subleft(s, len)
s (string)  — A stringlen (number)  — How many characters are extracted
string — Returns the extracted string
subleft("Hello World", 2)   ' Returns "He"