I want to join a String[] with a glue string. Is there a function for this?
-
7Java 8 has this functionality included out of the box. I recommend the reader to scroll through to the answer by @Marek Gregor (and upvote it..)stav– stav2014-07-08 15:53:39 +00:00Commented Jul 8, 2014 at 15:53
-
Possible duplicate of A quick and easy way to join array elements with a separator (the opposite of split) in JavaAnderson Green– Anderson Green2015-10-04 01:03:00 +00:00Commented Oct 4, 2015 at 1:03
24 Answers
Starting from Java8 it is possible to use String.join().
String.join(", ", new String[]{"Hello", "World", "!"})
Generates:
Hello, World, !
Otherwise, Apache Commons Lang has a StringUtils class which has a join function which will join arrays together to make a String.
For example:
StringUtils.join(new String[] {"Hello", "World", "!"}, ", ")
Generates the following String:
Hello, World, !
7 Comments
String.join() method introduced in Java 8. This way, the huge numbers of people reading this accepted answer will benefit from that knowledge. Currently, the highest voted answer mentioning this fact is rather lost down below...String.join() would work only for List<CharSequence> or CharSequence[] elements.If you were looking for what to use in android, it is:
String android.text.TextUtils.join(CharSequence delimiter, Object[] tokens)
for example:
String joined = TextUtils.join(";", MyStringArray);
2 Comments
In Java 8 you can use
1) Stream API :
String[] a = new String[] {"a", "b", "c"};
String result = Arrays.stream(a).collect(Collectors.joining(", "));
2) new String.join method: https://stackoverflow.com/a/21756398/466677
3) java.util.StringJoiner class: http://docs.oracle.com/javase/8/docs/api/java/util/StringJoiner.html
Comments
You could easily write such a function in about ten lines of code:
String combine(String[] s, String glue)
{
int k = s.length;
if ( k == 0 )
{
return null;
}
StringBuilder out = new StringBuilder();
out.append( s[0] );
for ( int x=1; x < k; ++x )
{
out.append(glue).append(s[x]);
}
return out.toString();
}
20 Comments
A little mod instead of using substring():
//join(String array,delimiter)
public static String join(String r[],String d)
{
if (r.length == 0) return "";
StringBuilder sb = new StringBuilder();
int i;
for(i=0;i<r.length-1;i++){
sb.append(r[i]);
sb.append(d);
}
sb.append(r[i]);
return sb.toString();
}
2 Comments
.append() twice for each String instead of concatenate them and then append to the builder.As with many questions lately, Java 8 to the rescue:
Java 8 added a new static method to java.lang.String which does exactly what you want:
public static String join(CharSequence delimeter, CharSequence... elements);
Using it:
String s = String.join(", ", new String[] {"Hello", "World", "!"});
Results in:
"Hello, World, !"
Comments
Google guava's library also has this kind of capability. You can see the String[] example also from the API.
As already described in the api, beware of the immutability of the builder methods.
It can accept an array of objects so it'll work in your case. In my previous experience, i tried joining a Stack which is an iterable and it works fine.
Sample from me :
Deque<String> nameStack = new ArrayDeque<>();
nameStack.push("a coder");
nameStack.push("i am");
System.out.println("|" + Joiner.on(' ').skipNulls().join(nameStack) + "|");
prints out : |i am a coder|
Comments
Given:
String[] a = new String[] { "Hello", "World", "!" };
Then as an alternative to coobird's answer, where the glue is ", ":
Arrays.asList(a).toString().replaceAll("^\\[|\\]$", "")
Or to concatenate with a different string, such as " & ".
Arrays.asList(a).toString().replaceAll(", ", " & ").replaceAll("^\\[|\\]$", "")
However... this one ONLY works if you know that the values in the array or list DO NOT contain the character string ", ".
1 Comment
Arrays.asList(a).toString() worked for what I wanted to doIf you are using the Spring Framework then you have the StringUtils class:
import static org.springframework.util.StringUtils.arrayToDelimitedString;
arrayToDelimitedString(new String[] {"A", "B", "C"}, "\n");
Comments
Not in core, no. A search for "java array join string glue" will give you some code snippets on how to achieve this though.
e.g.
public static String join(Collection s, String delimiter) {
StringBuffer buffer = new StringBuffer();
Iterator iter = s.iterator();
while (iter.hasNext()) {
buffer.append(iter.next());
if (iter.hasNext()) {
buffer.append(delimiter);
}
}
return buffer.toString();
}
2 Comments
If you've landed here looking for a quick array-to-string conversion, try Arrays.toString().
Creates a String representation of the
Object[]passed. The result is surrounded by brackets ("[]"), each element is converted to a String via theString.valueOf(Object)and separated by", ". If the array isnull, then"null"is returned.
1 Comment
Just for the "I've the shortest one" challenge, here are mines ;)
Iterative:
public static String join(String s, Object... a) {
StringBuilder o = new StringBuilder();
for (Iterator<Object> i = Arrays.asList(a).iterator(); i.hasNext();)
o.append(i.next()).append(i.hasNext() ? s : "");
return o.toString();
}
Recursive:
public static String join(String s, Object... a) {
return a.length == 0 ? "" : a[0] + (a.length == 1 ? "" : s + join(s, Arrays.copyOfRange(a, 1, a.length)));
}
2 Comments
copyOfRange()").Nothing built-in that I know of.
Apache Commons Lang has a class called StringUtils which contains many join functions.
Comments
This is how I do it.
private String join(String[] input, String delimiter)
{
StringBuilder sb = new StringBuilder();
for(String value : input)
{
sb.append(value);
sb.append(delimiter);
}
int length = sb.length();
if(length > 0)
{
// Remove the extra delimiter
sb.setLength(length - delimiter.length());
}
return sb.toString();
}
Comments
A similar alternative
/**
* @param delimiter
* @param inStr
* @return String
*/
public static String join(String delimiter, String... inStr)
{
StringBuilder sb = new StringBuilder();
if (inStr.length > 0)
{
sb.append(inStr[0]);
for (int i = 1; i < inStr.length; i++)
{
sb.append(delimiter);
sb.append(inStr[i]);
}
}
return sb.toString();
}
Comments
My spin.
public static String join(Object[] objects, String delimiter) {
if (objects.length == 0) {
return "";
}
int capacityGuess = (objects.length * objects[0].toString().length())
+ ((objects.length - 1) * delimiter.length());
StringBuilder ret = new StringBuilder(capacityGuess);
ret.append(objects[0]);
for (int i = 1; i < objects.length; i++) {
ret.append(delimiter);
ret.append(objects[i]);
}
return ret.toString();
}
public static String join(Object... objects) {
return join(objects, "");
}
Comments
Do you like my 3-lines way using only String class's methods?
static String join(String glue, String[] array) {
String line = "";
for (String s : array) line += s + glue;
return (array.length == 0) ? line : line.substring(0, line.length() - glue.length());
}
1 Comment
StringBuilder if you need efficiency :PIn case you're using Functional Java library and for some reason can't use Streams from Java 8 (which might be the case when using Android + Retrolambda plugin), here is a functional solution for you:
String joinWithSeparator(List<String> items, String separator) {
return items
.bind(id -> list(separator, id))
.drop(1)
.foldLeft(
(result, item) -> result + item,
""
);
}
Note that it's not the most efficient approach, but it does work good for small lists.
Comments
Whatever approach you choose, be aware of null values in the array. Their string representation is "null" so if it is not your desired behavior, skip null elements.
String[] parts = {"Hello", "World", null, "!"};
Stream.of(parts)
.filter(Objects::nonNull)
.collect(Collectors.joining(" "));
Comments
As already mentioned, class StringJoiner is also an available option since Java 8:
@NotNull
String stringArrayToCsv(@NotNull String[] data) {
if (data.length == 0) {return "";}
StringJoiner joiner = new StringJoiner(", ");
Iterator<String> itr = Arrays.stream(data).iterator();
while (itr.hasNext()) {joiner.add(itr.next());}
return joiner.toString();
}
However, the traditional String.join() is less imports and less code:
@NotNull
String stringArrayToCsv(@NotNull String[] data) {
if (data.length == 0) {return "";}
return String.join(", ", data);
}
Comments
I do it this way using a StringBuilder:
public static String join(String[] source, String delimiter) {
if ((null == source) || (source.length < 1)) {
return "";
}
StringBuilder stringbuilder = new StringBuilder();
for (String s : source) {
stringbuilder.append(s + delimiter);
}
return stringbuilder.toString();
} // join((String[], String)
There is simple shorthand technique I use most of the times..
String op = new String;
for (int i : is)
{
op += candidatesArr[i-1]+",";
}
op = op.substring(0, op.length()-1);
3 Comments
java.util.Arrays has an 'asList' method. Together with the java.util.List/ArrayList API this gives you all you need:;
private static String[] join(String[] array1, String[] array2) {
List<String> list = new ArrayList<String>(Arrays.asList(array1));
list.addAll(Arrays.asList(array2));
return list.toArray(new String[0]);
}