If I had an array or iterable, I could use things like Guava's Joiner or Ints.join. But if I needed to process the items that wouldn't work. (You could use something like Iterables transform or FluentIterables, but without lambdas, it's a lot of overhead to write a class just for one line of processing.)
Otherwise, I'd use a StringBuilder with a variety of ways to handle getting commas between items but not before the first or after the last.
Sometimes I'd do:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (int i = 0; i < array.length; ++i) { | |
if (i > 0) | |
sb.append(","); | |
sb.append(fn(array[i])); | |
} | |
return sb.toString(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (list.isEmpty()) | |
return ""; | |
for (Object x : list) | |
sb.append(fn(x)).append(","); | |
return sb.deleteCharAt(sb.length() - 1).toString(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (list.isEmpty()) | |
return ""; | |
for (Object x : list) | |
sb.append(",").append(fn(x)); | |
return sb.substring(1); |
I decided to write a utility class to make my code simpler and more consistent. Here's an example of its use:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CommaStringBuilder csb = new CommaStringBuilder("("); | |
for (Object x : list) | |
csb.add(fn(x)); | |
return csb.append(")").toString(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class CommaStringBuilder implements Appendable { | |
private final StringBuilder sb; | |
private boolean first = true; | |
public CommaStringBuilder() { | |
sb = new StringBuilder(); | |
} | |
public CommaStringBuilder(String s) { | |
sb = new StringBuilder(s); | |
} | |
public CommaStringBuilder(StringBuilder sb) { | |
this.sb = sb; | |
} | |
public CommaStringBuilder add(String s) { | |
if (first) | |
first = false; | |
else | |
sb.append(","); | |
sb.append(s); | |
return this; | |
} | |
public CommaStringBuilder add(Object x) { | |
return add(x.toString()); | |
} | |
public CommaStringBuilder add(long i) { | |
if (first) | |
first = false; | |
else | |
sb.append(","); | |
sb.append(i); | |
return this; | |
} | |
@Override | |
public CommaStringBuilder append(CharSequence s) { | |
sb.append(s); | |
return this; | |
} | |
@Override | |
public CommaStringBuilder append(CharSequence csq, int start, int end) { | |
sb.append(csq, start, end); | |
return this; | |
} | |
@Override | |
public CommaStringBuilder append(char c) { | |
sb.append(c); | |
return this; | |
} | |
public CommaStringBuilder append(Object x) { | |
sb.append(x); | |
return this; | |
} | |
public CommaStringBuilder append(long i) { | |
sb.append(i); | |
return this; | |
} | |
public void clear() { | |
sb.setLength(0); | |
first = true; | |
} | |
@Override | |
public String toString() { | |
return sb.toString(); | |
} | |
} |