this is predefined method in java that has two parts :
beginIndex -- the begin index, inclusive.
endIndex -- the end index, exclusive
returns a new string that is a substring of this string. The substring begins with the character at the specified index and extends to the end of this string or up to endIndex - 1 if second argument is given.
ex:
public String substring(int beginIndex)