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,
|
1
|
|||||||
|
|
|
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. |
||
|
|
|
I got the following example here
|
|||
|
|
|
|
There are several examples on DZone Snippets if you want to roll your own that works with a Collection. For example:
|
||||||||||||
|
|
|
Google also provides a joiner class in their Google Collections library: |
||
|
|