 
      
      substring()Extract a specified number of characters starting from a specified position in a string
substring(s, pos, len = -1)
s (string)  — A stringpos (number)  — Starting position of the character to be extractedlen (number, optional)  — How many characters are extracted. If len is -1 then all remaining characters will be extracted. The default value is -1
string — Returns the extracted string
substring("Hello World", 2, 3)   ' Returns "llo"
substring("Hello World", 2)      ' Returns "llo World"