java substring
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"
}
}
// Java code to demonstrate the
// working of substring(int begIndex)
public class Substr1 {
public static void main(String args[])
{
// Initializing String
String Str = new String("Welcome to geeksforgeeks");
// using substring() to extract substring
// returns geeksforgeeks
System.out.print("The extracted substring is : ");
System.out.println(Str.substring(10));
}
}
import java.lang.*;
public class StringDemo {
public static void main(String[] args) {
String str = "This is tutorials point";
String substr = "";
// prints the substring after index 8 till index 17
substr = str.substring(8, 17);
System.out.println("substring = " + substr);
// prints the substring after index 0 till index 8
substr = str.substring(0, 8);
System.out.println("substring = " + substr);
}
}