static S joinStrings(S sep, S... strings) { new StringBuilder buf; for (S s : strings) if (nempty(s)) { if (nempty(buf)) buf.append(sep); buf.append(s); } ret str(buf); }