Following this thread on how to join a list into a String
,
I'm wondering what the most succinct way to drop an element from the list and then join the remaining list. For example, if my list is:
[a, b, c, d]
and I want the String
:
"bcd"
How could I most succinctly drop a and then join the remaining elements? I'm new to Java, and my solutions feel heavy-handed.