Java implementation of the string split method
KW.java
class KW
{
    public static void main(String args[])
    {
        String s="Welcome to Kodingwindow!";
        System.out.println("———————————————————————————————————————————");
        System.out.println("Program to split the given string");
        System.out.println("———————————————————————————————————————————");
        String sarr[]=s.split(" ");
        System.out.println(sarr[0]+"\n"+sarr[1]+"\n"+sarr[2]);
        System.out.println("———————————————————————————————————————————");
    }
}
Output
kodingwindow@kw:~$ javac KW.java
kodingwindow@kw:~$ java KW ——————————————————————————————————————————— Program to split the given string ——————————————————————————————————————————— Welcome to Kodingwindow! ——————————————————————————————————————————— kodingwindow@kw:~$
Example 2
KW.java
class KW
{
    public static void main(String args[])
    {
        String s="Welcome to Kodingwindow!";
        System.out.println("———————————————————————————————————————————");
        System.out.println("Program to split the given string");
        System.out.println("———————————————————————————————————————————");
        String sarr[]=s.split("to");
        for(String str:sarr)
        {
            System.out.println(str);
        }
        System.out.println("———————————————————————————————————————————");
    }
}
Output
kodingwindow@kw:~$ javac KW.java
kodingwindow@kw:~$ java KW ——————————————————————————————————————————— Program to split the given string ——————————————————————————————————————————— Welcome Kodingwindow! ——————————————————————————————————————————— kodingwindow@kw:~$
Advertisement