if I have,
String[] s = new String[3];
s[0] = "Ap";
s[1] = "p";
s[2] = "le";
String result = ?
If I want to get Apple out of s without looping, how do I do that?
Any short cut?
|
|
|
If the not looping is more important to you than preventing to import another library or if you are using apache commons lang already, anyway, you can use the StringUtils.join method
Maybe the Apache Commons have other methods that might be interesting for your project, as well. I found them to be a very useful resource for missing features in the native Java libraries. |
|||||||||||||||||
|
|
Without looping, you can:
then:
This is called a recursive solution. |
|||||||||||||||
|
|
If you know the length of your array, you can easily do the following:
Another option is to do the following, (which is purely academic, I would not use it in a real-world scenario as it would remove
Yet another option, to go along with the first attempt, but using a C-like formatter:
|
||||
|
|
|
using Dollar is simple as typing:
|
|||||
|
|
If you have an unknown number of entries, I think you'll need a loop. |
|||||
|
|
Java does not have a |
|||
|
|
|
You have to use an external library or implement your own. But i don't recommend you to use a library only for this method. It will take longer to download and add a library instead of implementing your own. You can use this function. And i don't think any external library would do a better one. Because the task is simple. And there is no way to this without looping. Languages like C# which have built-in method for joining a string array also do this on background.
|
|||
|
|