Saturday 17 August 2019

Java: function for arrays like PHP's join()?




I want to join a String[] with a glue string. Is there a function for this?


Answer



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, !

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...