I know this is a bit of a newbie question, but are there equivalents to C#'s string operations in Java?

Specifically, I'm talking about String.Format and String.Join.

link|improve this question

75% accept rate
So there is a String.format but I'll have to Roll my own join. – Omar Kooheji Oct 9 '08 at 15:14
For join(), I like this answer: stackoverflow.com/a/6116469/562139 – scorpiodawg Mar 8 at 19:38
feedback

9 Answers

up vote 57 down vote accepted

The Java String object has a format method (as of 1.5), but no join method.

To get a bunch of useful String utility methods not already included you could use org.apache.commons.lang.StringUtils.

link|improve this answer
6  
google collections: google-collections.googlecode.com has a Joiner as well. – Ron Oct 21 '09 at 13:20
2  
Link above is broken as of 9/20/2010. Try commons.apache.org/lang/api-2.5/org/apache/commons/lang/… – Tony Ennis Sep 20 '10 at 13:15
2  
FYI on Ron's comment, google-collections was renamed to Guava a while ago. – Kevin Bourrillion Sep 1 '11 at 23:21
feedback

Yes, kinda

String.format and as for join I think you need to write your own:

 static String join(Collection<?> s, String delimiter) {
     StringBuilder builder = new StringBuilder();
     Iterator iter = s.iterator();
     while (iter.hasNext()) {
         builder.append(iter.next());
         if (!iter.hasNext()) {
           break;                  
         }
         builder.append(delimiter);
     }
     return builder.toString();
 }

The above comes from http://snippets.dzone.com/posts/show/91

link|improve this answer
5  
I'd suggest using StringBuilder instead of StringBuffer if you're using the appropriate version. – Jon Skeet Oct 9 '08 at 15:13
4  
More precisely: StringBuffer for jdk1.4 and below, StringBuilder for jdk1.5 and after, since the latter is not synchronized, hence a little faster. – VonC Oct 9 '08 at 15:39
1  
Istead of two iter.hasNext() invocations I usually append delimeter and then "return buf.substring(0, buf.length() - delimeter.length())". – Vilmantas Baranauskas Oct 9 '08 at 15:40
Collection should really be parameterized, as should be the Iterator. Eclipse will warn you about it, and rightly so. – Aleksandar Dimitrov Oct 9 '08 at 16:21
1  
You can streamline it a tiny bit by exiting early to avoid the delimiter: while (true) ( add_iter; if (! iter.hasNext()) break; add_delim; } – 13ren Mar 21 '09 at 12:50
show 3 more comments
feedback
import com.google.common.base.Joiner;

Joiner.on(separator).join(data);
link|improve this answer
feedback

You can also use variable arguments for strings as follows:

  String join (String delim, String ... data) {
    StringBuilder sb = new StringBuilder();
    for (int i = 0; i < data.length; i++) {
      sb.append(data[i]);
      if (i >= data.length-1) {break;}
      sb.append(delim);
    }
    return sb.toString();
  }
link|improve this answer
feedback

As for join, I believe this might look a little less complicated:

public String join (Collection<String> c) {
    StringBuilder sb=new StringBuilder();
    for(String s: c)
        sb.append(s);
    return sb.toString();
}

I don't get to use Java 5 syntax as much as I'd like (Believe it or not, I've been using 1.0.x lately) so I may be a bit rusty, but I'm sure the concept is correct.

edit addition: String appends can be slowish, but if you are working on GUI code or some short-running routine, it really doesn't matter if you take .005 seconds or .006, so if you had a collection called "joinMe" that you want to append to an existing string "target" it wouldn't be horrific to just inline this:

for(String s : joinMe)
    target += s;

It's quite inefficient (and a bad habit), but not anything you will be able to perceive unless there are either thousands of strings or this is inside a huge loop or your code is really performance critical.

More importantly, it's easy to remember, short, quick and very readable. Performance isn't always the automatic winner in design choices.

link|improve this answer
The for-loop is correct, but you should also make it a Collection<String>. If you don't, you'd have to say "for (Object o : c)", because you couldn't guarantee that everything in c was a String. – Michael Myers Oct 9 '08 at 17:00
Good point, I'm even more rusty with Generics. I'll edit it in. – Bill K Oct 9 '08 at 17:02
When concatting inline: string + string + string, the compiler actually uses StringBuilder to append the values. I wonder if in the for-loop method you have second there, whether the compiler would do the same. – Spencer Kormos Oct 9 '08 at 18:46
@Spencer K: It does use a StringBuilder, but it creates a new one for each iteration (hardly the most efficient method, but then how is the compiler supposed to know?). I don't know if the JIT compiler might optimize that at runtime. – Michael Myers Oct 9 '08 at 19:26
2  
Oh-wait. Are you talking +=? Yeah, that sucks. The loop and append currently in my answer uses StringBuilder and that's what I'm talking about. Although += has improved much you really don't want to use it inside a loop--not so much that it's buggy but in that it can perform like crap (Bug is not a term generally used for performance issues--at least not in my 20 years of programming). Also the JIT can improve this immensely--but I wouldn't rely on that. – Bill K May 5 '11 at 21:31
show 6 more comments
feedback

If you wish to join (concatenate) several strings into one, you should use a StringBuilder. It is far better than using

for(String s : joinMe)
    target += s;

There is also a slight performance win over StringBuffer, since StringBuilder does not use synchronization.

For a general purpose utility method like this, it will (eventually) be called many times in many situations, so you should make it efficient and not allocate many transient objects. We've profiled many, many different Java apps and almost always find that string concatenation and string/char[] allocations take up a significant amount of time/memory.

Our reusable collection -> string method first calculates the size of the required result and then creates a StringBuilder with that initial size; this avoids unecessary doubling/copying of the internal char[] used when appending strings.

link|improve this answer
re: pre-calculating size: When that works, it's great. It's not always possible. I recall reading somewhere that doubling the buffer size each time (or really multiplying by any fixed factor) gives something like n log n performance, which isn't really all that bad. In the general case, the alternative is to make a list of all the strings you plan to concatenate. If you use an ArrayList, you've got copying again (unless you know the length of your sequence in advance) and if you use LinkedList, then it uses more ram and garbage collection with the node objects. Sometimes you can't win. Do try! – Ian Apr 27 '11 at 7:58
The above examples/inquiries assumed some ordered collection or array of Strings to join. Also, by precomputing the size, you avoid extra unused chars that internal char[] array growth usually results in. – djb Jun 7 '11 at 15:32
feedback

The Java String API is pretty useful...Check it out

link|improve this answer
4  
Note that that's Java 1.3. You might be better looking at the more current 1.6 instead. java.sun.com/javase/6/docs/api/java/lang/String.html – izb Oct 9 '08 at 15:26
feedback

StringUtils is a pretty useful class in the Apache Commons Lang library.

link|improve this answer
2  
Perhaps you didn't notice that the accepted answer, posted 8 months ago, already contains that same information; stackoverflow.com/questions/187676/string-operations-in-java/… – Jonik Jun 25 '09 at 17:04
feedback

I would just use the string concatenation operator "+" to join two strings. s1 += s2;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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