I'm trying to join an array of Strings using the String.join() method. I need the first item of the array to be removed (or set to empty). If I have a string array such as {"a","b","c","d"}, I want to return only b.c.d.
If it can be done with a for loop, that is fine. I currently have:
for (int i=1; i<item.length; i++) { newString += item[i] + "."; }