vote up 4 vote down star
1

I am looking for a method to combine an array of strings into a delimited String. An opposite to split(). I've seen this in other languages.

Wanted to ask the forum before I try writing my own( since the JDK has everything...)

Thanks,

flag

0% accept rate
Just iterate over the array and concatenate the elements into a StringBuilder. – Steve Kuo Apr 27 at 16:56
Duplicate of stackoverflow.com/questions/63150/…, stackoverflow.com/questions/448320/…, stackoverflow.com/questions/205555/…, stackoverflow.com/questions/58431/…, and several others. – mmyers Apr 27 at 17:25
Thanks. I did write such a method, but after re-inventing the wheel so many times in the past, and then finding out that the jdk already had it...well, figured it was wroth the post.. Phil – javaphild Apr 27 at 19:39

4 Answers

vote up 9 vote down

There's no method in the JDK for this that I'm aware of. Apache Commons Lang has various overloaded join methods that do what you want.

link|flag
I just looked in on the apache commons classes - awesome! Probably everything I need..thanks – javaphild Apr 27 at 19:33
vote up 4 vote down

I got the following example here

/*
7) Join Strings using separator >>>AB$#$CD$#$EF

 */

import org.apache.commons.lang.StringUtils;

public class StringUtilsTrial {
  public static void main(String[] args) {

    // Join all Strings in the Array into a Single String, separated by $#$
    System.out.println("7) Join Strings using separator >>>"
        + StringUtils.join(new String[] { "AB", "CD", "EF" }, "$#$"));
  }
}
link|flag
vote up 3 vote down

There are several examples on DZone Snippets if you want to roll your own that works with a Collection. For example:

public static String join(AbstractCollection<String> s, String delimiter) {
    if (s == null || s.isEmpty()) return "";
    Iterator<String> iter = s.iterator();
    StringBuilder builder = new StringBuilder(iter.next());
    while( iter.hasNext() )
    {
        builder.append(delimiter).append(iter.next());
    }
    return builder.toString();
}
link|flag
I would be inclined to leave out the empty check, because the behavior will be the same and why complicate the code with special cases? On the other hand, a null check might be in order. – Carl Manaster Apr 27 at 16:43
@Carl: I completely agree with you on the null check and added that. Checking for an empty Collection allows the function to skip needlessly creating an Iterator and a StringBuffer, so I left it in. – Bill the Lizard Apr 27 at 16:50
You should use StringBuilder instead of StringBuffer as StringBuffer has the added overhead of being synchronized. You don't need synchronization for method variables (since only one thread will be using it). – Steve Kuo Apr 27 at 16:55
@Steve: Agreed and updated. – Bill the Lizard Apr 27 at 17:20
1  
Your join method should accept Collection, not AbstractCollection. Better yet, it could accept Iterable, which allows it to be more generic. – Steve Kuo Apr 27 at 17:26
show 1 more comment
vote up 0 vote down

Google also provides a joiner class in their Google Collections library:

Joiner API

Google Collections

link|flag

Your Answer

Get an OpenID
or

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