Get a substring of a String. The starting index is inclusive (the corresponding character is included in the substring), but the optional ending index is exclusive (the corresponding character is not included in the substring). If the ending index is omitted, the substring continues to the end of the String.
myString.substring(from)myString.substring(from, to)myString: a variable of type Stringfrom: the index to start the substring atto (optional): the index to end the substring beforeThe substring.