java substring methpd code example
Example 1: java substring
String s = "Let's Get This Bread";
String subString = s.substring(6, 9);
// (start index inclusive, end index exclusive)
// subString == "Get"
Example 2: how to do substring java
class Main {
public static void main (String[] args) {
String str = "Hello World!";
String firstWord = str.substring(0, 5);
//two parameters are start and end index: (inclusive, non-inclusive)
String secondWord = str.substring(6, 11);
//firstWord has string "Hello"
//secondWord has string "World"
}
}