Last active
August 27, 2019 15:21
-
-
Save yavuztas/017359dc372a3413d33ef3bc09a07fdf to your computer and use it in GitHub Desktop.
Created with Copy to Gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String[] array = new String[] { | |
"apple", "banana", "orange", "avocado", "mango" | |
}; | |
String joined = UtilsForCollections.join(array, ", ", 3); | |
System.out.println(joined); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment