JavaScript has Array.join()
Array.join()
js>[\"Bill\",\"Bob\",\"Steve\"].join(\" and \") Bill and Bob and Steve
Does Java have anything
Google's Guava API also has .join(), although (as should be obvious with the other replies), Apache Commons is pretty much the standard here.