I wanna know how to print only part of a string.
For instance:
public static void main(String[] args){
String a = "daniweb.com";
System.out.println(a);
}
I wanna say print only characters after the 4th one
so the output would be:
> web.com