Reference: substring
substring(s, i, n) returns the string of characters i to i + n in s. Example: substring("Hello World!", 7, 5) = "World"
substring(s, i, n) returns the string of characters i to i + n in s. Example: substring("Hello World!", 7, 5) = "World"