devxlogo

Using String.join to Concatenate Strings

Using String.join to Concatenate Strings

String.join is an easy-to-use utility method in String class.

public class StringJoin{      public static void main(String args[]){          //The first argument (refered as joinString) is used to join the subsequent argument(s)        String finalString = String.join("-","String","join","example"," Hyphen(-) used to join");        System.out.println("Output 1: " + finalString);          //In case there is only 1 argument after the first argument, then the second argument is not appended with the joinString        finalString = String.join("-","String");        System.out.println("Output 2: " + finalString);      }}
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist