I want to join a String[] with a glue string. Is there a function for this?
|
|
|
Apache Commons Lang has a For example:
Generates the following
|
||||
|
But then, you could easily write such a function with about ten lines of code. Like:
Edit: A better signature might be combine(String glue, String... s), so you could pass it either an array or a comma-separated list of strings. Whatever. |
|||||||||||||||||||||
|
|
A little mod instead of using substring():
|
|||||||
|
|
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 :
prints out : |
|||
|
|
|
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.
|
|||||||||||
|
|
If you are using the Spring Framework then you have the StringUtils class:
|
|||
|
|
|
Nothing built-in that I know of. Apache Commons Lang has a class called |
||||
|
|
|
This is how I do it.
|
|||
|
|
|
Given:
Then as an alternative to coobird's answer, where the glue is ", ":
Or to concatenate with a different string, such as " & ".
However... this one ONLY works if you know that the values in the array or list DO NOT contain the character string ", ". |
|||
|
|
|
If you've landed here looking for a quick array-to-string conversion, try Arrays.toString().
|
|||
|
|
|
A similar alternative
|
|||
|
|
|
If you were looking for what to use in android, it is:
for example:
|
|||
|
|
|
I do it this way using a StringBuilder:
|
|||
|
|
|
|||||
|
|
java.util.Arrays has an 'asList' method. Together with the java.util.List/ArrayList API this gives you all you need:;
|
|||||
|

