package com.java.myapp;
public class MyClass {
public static void main(String[] args) {
String a = new String("This year 2013 Welcome to ThaiCreate.Com Version 2013");
String b = new String("This year 2013 Welcome to ThaiCreate.Com Version 2013");
System.out.println(a.substring(15));
System.out.println(b.substring(25,53));
}
}
Output
Welcome to ThaiCreate.Com Version 2013
ThaiCreate.Com Version 2013