Notice


AWT and SWING will be covered soon !

Sunday, September 20, 2009

Sub Strings

image

public class substr
{
    public static void main (String args[])
    {
        String str="ArchAngel";
        String output;
        output=str.substring(4);
        System.out.print("Sub String : "+output);
    }
}

No comments:

Post a Comment