get a substring from a string in java 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: extract one string java

int pos = 0; //Arbitrary position, can be any number
"String".substring(pos, pos+1);

Example 3: how to substring in java

class scratch{
    public static void main(String[] args) {
        String hey = "Hello World";
        System.out.println( hey.substring(0, 5) );
        // prints Hello;
    }
}

Tags:

Java Example