JavaScript tem Array.join()
js>["Bill","Bob","Steve"].join(" and ")
Bill and Bob and Steve
Java tem algo assim? Eu sei que posso criar algo com o StringBuilder:
static public String join(List<String> list, String conjunction)
{
StringBuilder sb = new StringBuilder();
boolean first = true;
for (String item : list)
{
if (first)
first = false;
else
sb.append(conjunction);
sb.append(item);
}
return sb.toString();
}
... mas não faz sentido fazer isso se algo assim já faz parte do JDK.
String.join()
método Ter um olhar para esta resposta se você estiver usando Java 8 (ou mais recente) stackoverflow.com/a/22577565/1115554