split array in java example

Example 1: java split array into two

String[] array = {"0","1","2","3","4","5","6","7","8","9"};
String[] a = Arrays.copyOfRange(array, 0, 4); //<- (targetArray, start, to)
String[] b = Arrays.copyOfRange(array, 4, array.length);

Output:
a: 0,1,2,3
b: 4,5,6,7,8,9

Example 2: split method in java

public class SplitExample2 { 
    public static void main(String args[]) 
    { 
        String str = "My name is Chaitanya";
        //regular expression is a whitespace here 
        String[] arr = str.split(" "); 
  
        for (String s : arr) 
            System.out.println(s); 
    } 
}

Example 3: split string into array java

String[] array = values.split("\\|", -1);