Search Results

0
votes

What’s the best way to build a string of delimited items in Java?

So basically something like this: public static String appendWithDelimiter(String original, String addition, String delimiter) { if (original.equals("")) { return addition; } e …