Here you can find the source of sliceStringArray(String[] a, Integer l)
public static String sliceStringArray(String[] a, Integer l)
//package com.java2s; //License from project: Creative Commons License public class Main { public static String sliceStringArray(String[] a, Integer l) { String s = ""; for (int i = l; i < a.length; i++) { s += a[i] + " "; }//from w w w.ja va 2s .c o m return s.trim(); } }