Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given a list

List<String> l = new ArrayList<String>();
l.add("one");
l.add("two");
l.add("three");

I have a method

String join(List<String> messages) {
        if (messages.isEmpty()) return "";
        if (messages.size() == 1) return messages.get(0);
        String message = "";
        message = StringUtils.join(messages.subList(0, messages.size() -2), ", ");
        message = message + (messages.size() > 2 ? ", " : "") + StringUtils.join(messages.subList(messages.size() -2, messages.size()), ", and ");
        return message;
    }

which, for l, produces "one, two, and three". My question is, is there a standard (apache-commons) method that does the same?, eg

WhatEverUtils.join(l, ", ", ", and ");

To clarify. My problem is not getting this method to work. It works just as I want it to, it's tested and all is well. My problem is that I could not find some apache-commons-like module which implements such functionality. Which surprises me, since I cannot be the first one to need this.

But then maybe everyone else has just done

StringUtils.join(l, ", ").replaceAll(lastCommaRegex, ", and");
share|improve this question
I don't think there's such an open source library, but I advise using a resource bundles since not all languages use the English word "and". – Oded Peer Nov 24 '11 at 12:04
@slipset, why don't you use some join from known library and just modify it a bit? Notice that "and" is English word, so if such library would exist, it had to have multi languages support – smas Nov 24 '11 at 12:50
I might have been unclear, but I have written the method I show in my question, and it works just as I want. – slipset Nov 24 '11 at 13:14

3 Answers

I like using google collections for this purpose. Neat and very useful:

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

This kind of code has been written time and time again and you should rather be freed implementing your specific implementation logic.

If you use maven, herewith the dependency:

<dependency>
  <groupId>com.google.collections</groupId>
  <artifactId>google-collections</artifactId>
  <version>1.0</version>
</dependency>

It has a bunch of other wonderful cool features too!

share|improve this answer
4  
That's not producing "one, two, and three" as the OP requested – Lukas Eder Nov 24 '11 at 9:59
2  
Just FYI: google collections has been deprecated in favour of Guava (code.google.com/p/guava-libraries) which is a fully backwards compatible superset. – Simon Nickerson Nov 24 '11 at 10:01
Quite correct.. I forgot about that. The maven dependency if anyone is interested: <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>10.0.1</version> </dependency> – Jaco Van Niekerk Nov 24 '11 at 10:13
1  
I don't see why you're downvoting answers with join method which produce: "one, two, three". Is it so hard to replace the last comma by any string you want, or something similar?! This is 100% OK answer which give to @slipset possible direction which can solve his problem. – smas Nov 24 '11 at 12:45
Thanks smas... I was a bit red-faced about the down-vote. I use the Joiner function all the time. The last "and" shouldn't be too hard to get right anyway. – Jaco Van Niekerk Nov 24 '11 at 13:17
show 2 more comments

I don't know any Apache String joiner that can support adding and in the joined String.

Here's an untested code that will do what you asked:

public static String join(String separator, List<String> mList, boolean includeAndInText) {
    StringBuilder sb = new StringBuilder();
    int count = 0;

    for (String m: mList) {
        if (includeAndInText && (count + 1 == mList.size())) {
            sb.append (" and ");
        }

        sb.append(m);
        count++;
        if (count < mList.size()) {
            sp.append(separator);
        }       
    }

    return sb.toString();
}
share|improve this answer
sorry, but I don't think this is the best approach to this problem. IMO we should use something which exists (e.g. join from Apache) and modify it a bit to get " and ", " or " or something what we expect to have. – smas Nov 24 '11 at 12:48
@smas, ok, I disagree. Changing an existing library to conform to your only requirement is not an obvious choice since (and I don't believe) you will commit your change to Apache. Plus, if another version of StringUtils gets released, you will have to maintain it and make sure that your change isn't affected (deleted). I say, leave the library implementation AS-IS and write your own Utility class. – Buhake Sindi Nov 24 '11 at 13:23
I diagree also. In business world well-known libraries like StringUtils are used very often to avoid reinventing the wheel. If you aware of some changes, you write unit tests. For this case writing join on your own only because "and" must be there is waste of time, money and Object Oriented Programming style. – smas Nov 24 '11 at 14:25

What about join from: org.apache.commons.lang.StringUtils

Example:

StringUtils.join(new String[] { "one", "two", "three" }, ", "); // one, two, three

To have "and" or ", and" you can simple replace the last comma.

share|improve this answer
That's not producing "one, two, and three" as the OP requested. Observe: He's using that join method in his question – Lukas Eder Nov 24 '11 at 10:30
@Lukas, but you can replace the last comma, right? I don't see sense to have library which add for me this "and" in join method. – smas Nov 24 '11 at 12:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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