substring() String Method Web & Application String str1 = "CCCP"; String str2 = "Rabbit"; String ss1 = str1.substring(2); // Returns "CP" String ss2 = str2.substring(3); // Returns "bit" String ss3 = str1.substring(0, 2); // Returns "CC" println(ss1 + ":" + ss2 + ":" + ss3); // Prints 'CP:bit:CC' Returns a new string that is a part of the original string. When using the endIndex parameter, the string between beginIndex and endIndex-1 is returned. substring(beginIndex) substring(beginIndex, endIndex) int: position from which to begin (inclusive) int: position from which to end (exclusive) None 1.0 Method Core