vote up 5 vote down star
2

I have never found a neat(er) way of doing the following.

Say I have a list/array of strings.

abc
def
ghi
jkl

and I want to concatenate them into a single string delimited by a comma as follows:

abc,def,ghi,jkl

In Java, if I write something like this (pardon the syntax)

String[] list = new String[] {"abc","def","ghi","jkl"};
String str = null;
for (String s : list)
{
   str = str + s + "," ;
}

System.out.println(str);

I'll get

abc,def,ghi,jkl,  //notice the comma in the end

So I have to rewrite the above for loop as follows

... 
for (int i = 0; i < list.length; i++)
{
   str = str + list[i];
   if (i != list.length - 1)
   {
     str = str + ",";
   }
}  
...

My question is , can this be done in a more elegant way in java?

EDIT: I would certainly use a StringBuilder/Buffer for efficiency but wanted to illustrate the case in point without being too verbose. By elegant, I mean a solution that avoids the ugly(?) if check inside the loop.

flag

8 Answers

vote up 2 vote down check

Here is my version: Java Tricks: Fastest Way to Collecting Objects in a String

StringBuilder buffer = new StringBuilder ();
String delim = "";
for (Object o: list)
{
    buffer.append (delim);
    delim = ", "; // Avoid if(); assignment is very fast!
    buffer.append (o);
}
buffer.toString ();
link|flag
1  
It is not very pretty - make an initialization of delim every iteration. – St.Shadow Oct 29 at 7:57
1  
Please provide your solution in case of deletion of your blog post. – furtelwart Oct 29 at 7:57
1  
@Gonzo: if() is slower than an assign. The assignment is just a pointer operation and it always happens with the same address, so the CPU will probably use registers and keep everything in the cache. Also, the code is compact, the setup is constant (no need to do part of the work outside of the loop) and the code in the loop is always the same. – Aaron Digulla Oct 29 at 8:14
1  
... but to speak of clean code: using builder.setLength(builder.length() - 1); after the loop is probably the cleanest (and doesn't require a System.arraycopy(..) like deleteCharAt(int) does) – sfussenegger Oct 29 at 8:18
1  
@Aaron Digulla: I was comparing setLength(builder.length() - 1) to deleteCharAt(builder.length()) which are doing the same but the former with far less overhead. You're right that an extra character might cause an extra arraycopy - but chances are minimal, especially for Strings of a size where speed really matters (size of the underlying buffer always doubles). But still it's ridiculous to talk about performance at this level anyway. I really don't care if my CPU dies 5 minutes earlier as it wasn't able to predict branches right. Damn, if it wasn't able to do so it deserved it anyway! ;) – sfussenegger Oct 29 at 10:35
show 9 more comments
vote up 5 vote down

using google-collections joiner class:

Joiner.on(",").join(list)

done.

link|flag
+1 for google-collections. Yes, yes, I know -- 'an external dependency just for string joining?!?!' -- but it can make your code so much shorter + more expressive that, if you learn the API, it will pay for itself in an hour. :) – Cowan Oct 29 at 8:29
once you take a look at the api, you will use ist for much more than just string joining. – Andreas Petersson Oct 29 at 8:35
@Andreas, suggestions for what else it is good for? – Thorbjørn Ravn Andersen Oct 29 at 9:03
You right - if external api can be used more that one time - it is best solution. – St.Shadow Oct 29 at 9:08
1  
why this is cool: now you want to skip over nulls? Just insert '.skipNulls()' between the 'on' and 'join' calls. Or treat nulls like empty strings? Easy, that's '.useForNull("")'. Etc. – Kevin Bourrillion Nov 4 at 17:38
show 2 more comments
vote up 1 vote down

I'd bet that there are several classes named "StringUtil", "StringsUtil", "Strings" or anything along those lines on the classpath of any medium sized Java project. Most likely, any of them will provide a join function. Here are some examples I've found in my project:

org.apache.commons.lang.StringUtils.join(...)
org.apache.wicket.util.string.Wicket.join(...)
org.compass.core.util.StringUtils.arrayToDelimitedString(...)

As you might want to get rid of some external dependencies in the future, you may want to to something like this:

public static final MyStringUtils {
    private MyStringUtils() {}

    public static String join(Object[] list, String delim) {
        return org.apache.commons.lang.StringUtils.join(list, delim);
    }
}

Now that's what I call "elegant" ;)

link|flag
vote up 0 vote down
for (int i = 0; i < list.length-1; i++)
{
str = str + list[i];
str = str + ",";    
}
str = str + list[list.length-1]
link|flag
Using string concatination isn't very fast. This code is also hard to read i think – chrsk Oct 29 at 8:02
i know string concatenation isent fast thats not the point and yes its less readable just pointing out other options to do what the OP asked – Peter Oct 29 at 8:38
Have you tried the code with an empty list? – Thorbjørn Ravn Andersen Oct 29 at 9:05
clearly not did that – Peter Oct 29 at 9:23
vote up 1 vote down
StringBuilder builder = new StringBuilder();
for (String st: list) {
    builder.append(st).append(',');
}
builder.deleteCharAt(builder.length());
String result = builder.toString();

Do not use '+' for string contacenations. It`s slow.

link|flag
Missing right parathesis on line 5 ;) – furtelwart Oct 29 at 7:55
Thanks for correction! – St.Shadow Oct 29 at 8:00
I like this! =) – chrsk Oct 29 at 8:00
vote up 0 vote down

I would use a StringBuffer to implement this feature. String is immutable so everytime you concat two Strings, a new object is created.

More efficient is the use of StringBuffer:

String[] list = new String[] {"abc","def","ghi","jkl"};
StringBuffer str = new StringBuffer();
for (String s : list) {
   str.append(s);
   str.append(",");
}
str.deleteCharAt(str.length());
System.out.println(str); //automatically invokes StringBuffer.toString();
link|flag
2  
:p You forgot about last comma... – St.Shadow Oct 29 at 7:54
Damn right... corrected. – furtelwart Oct 29 at 7:55
You shouldn't use StringBuffer where it's not necessary, it's thread safe and slow, i would use StringBuilder instead. You also have to delete the last comma – chrsk Oct 29 at 7:58
vote up 1 vote down

No, there is no join() method like in javascript so you'll have to do what you posted here, except you should use a StringBuilder instead of concatenating strings with +

StringBuilder sb = new StringBuilder();
for (String string : strings)
{
  if (sb.length() > 0)
    sb.append(separator);
  sb.append(string);
}
return sb.toString();
link|flag
:p It`s not fast make a check every iteration -) – St.Shadow Oct 29 at 7:58
1  
@St.Shadow: Really? You want to quantify that? I just ran a test to compare an assignment vs a numerical if test through 100,000,000 iterations with -no- performance decrease, using System.nanoTime(). – Reverend Gonzo Oct 29 at 8:10
In any case - you make check every iteration. It is not true way. – St.Shadow Oct 29 at 9:05
vote up 2 vote down

Look here:

http://snippets.dzone.com/posts/show/91

for a full discussion of this topic.

link|flag
Thanks for the link. I am looking for a more elegant approach (perhaps one that involves fewer lines of code). Performance, in my case, is not such a major concern. – Rahul Oct 29 at 7:54
I don not like checks in the look when you can do it outside – St.Shadow Oct 29 at 7:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.